/*
#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;
}
*/
; 세미콜론 명령의 마지막에 꼭 써줘야한다
/* 메모 */ 컴파일할 때 신경쓰지마라, 메모다
#include 포함해라
<stdio.h> standard 기본 input 입력 outpu 출력
return 0; main 프로그램을 끝내라
컴파일 c언어 --> 0 or 1 F9
\ 백슬래시
줄바꿈 \n



