11 lines
125 B
C++
11 lines
125 B
C++
#include<stdio.h>
|
|
|
|
int main() {
|
|
#ifdef NDEBUG
|
|
printf("Non-debug\n");
|
|
#else
|
|
printf("Debug\n");
|
|
#endif
|
|
return 0;
|
|
}
|