About
Contact
QtCreator
KDevelop
Solarized
1
#include
"macro1.h"
2
3
#define
MACRO_1
100
4
#define
MACRO_2
200
5
6
int
7
main
()
8
{
9
int
a
=
ONE
+
TWO
;
// Break here
10
11
#undef
MACRO_2
12
#undef
FOUR
13
14
return
Simple
(
).
Method
();
15
}
16