#include "stdafx.h"
#define DEBUG
void main()
{
int i=2,j=3,k=4;
printf("%d,%d,%d\n",i,j,k);
#pragma message("between hello and world\n");//빌드창에 출력
#ifdef DEBUG
//cmd
char c;
scanf("%c",&c);
#endif
}
#include "stdafx.h"
#define DEBUG
void main()
{
int i=2,j=3,k=4;
printf("%d,%d,%d\n",i,j,k);
#pragma message("between hello and world\n");//빌드창에 출력
#ifdef DEBUG
//cmd
char c;
scanf("%c",&c);
#endif
}