mirror of
https://github.com/luzhisheng/js_reverse.git
synced 2025-04-12 03:27:07 +08:00
15 lines
210 B
C++
15 lines
210 B
C++
#include <stdio.h>
|
|
#define NUMBER 3
|
|
|
|
int main()
|
|
{
|
|
int a = 10;
|
|
#ifdef DEBUG
|
|
printf("111111111111\n");
|
|
#endif
|
|
for(int i=0; i<NUMBER; ++i)
|
|
{
|
|
printf("hello, GCC|||\n");
|
|
}
|
|
return 0;
|
|
} |