About
Contact
QtCreator
KDevelop
Solarized
1
#include
<stdio.h>
2
3
typedef
int
Dollars
;
4
5
int
main
(
) {
6
Dollars
cash
=
99
;
7
printf
(
format:
"break here: %d\n"
,
cash
);
8
return
0
;
9
}
10