brintos

brintos / llvm-project-archived public Read only

0
0
Text · 152 B · fc9a370 Raw
14 lines · c
1#include <stdint.h>2#include <stdio.h>3 4int main() {5  uint8_t x1 = 0;6  uint16_t x2 = 0;7 8  printf("patatino\n");9 10  x1 += 1;11  x2 += 2;12  return 0;13}14