brintos

brintos / llvm-project-archived public Read only

0
0
Text · 126 B · 36e6ea9 Raw
10 lines · c
1#include <stdio.h>2 3typedef int Dollars;4 5int main() {6  Dollars cash = 99;7  printf("break here: %d\n", cash);8  return 0;9}10