/*
; 세미콜론
명령의 끝을 표시한다.
-> 숙제 : 복습을 하기 위해서 !!
*/
/*
#include <stdio.h>
int main()
{
printf("123456");
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("Hello\nWorld");
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;
}
*/