/*
#include <stdio.h>
int main()
{
printf("Hello world!\n");
return 0;
}
규칙 1번. 명령끝에는 세미콜론 ;
*/
/*
#include <stdio.h>
int main()
{
printf("Hello");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("Hello World");
return 0;
}
/ 슬래시
\ 백슬래시
*/
/*
#include <stdio.h>
int main()
{
printf("\'Hello\'");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("\"Hello World\"");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("\"!@#$%%^&*()\"");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("\"C:\\Download\\hello.cpp\"");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("Hello, World!");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("Hello,\nWorld!");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("\"c:\\test\"");
return 0;
}
*/