/*
; 세미콜론 -> 명령의 끝에 무조건 붙여야한다!
*/
/*
#include <stdio.h>
int main()
{
printf("12345");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("Hello");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("Hello World");
return 0;
}
include -> 포함하다
stdio.h를 포함해서 컴파일(번역)하세요
std io h
std : standard 기본
io : input output 입력 출력
h : 파일 종류
*/
/*
#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;
}
*/