/*
#include <stdio.h>
int main()
{
printf("He77885544");
return 0;
}
1. 명령의 끝에는 ;(세미콜론) 붙인다
*/
/*
#include <stdio.h>
int main()
{
printf("Hello");
return 0;
}
*/
/*
전처리기
#include <stdio.h> - > 컴파일할때 stdio.h라는 파일을 포함해서 컴파일하세요
std i o . h
standard input output . header
기본 입력 출력 . 파일종류
int main()
{
printf("Hello World");
return 0;
}
\n -> 엔터 출력
/슬래시 \백슬래시
*/
/*
#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("\"!@#$%^&*()\"");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("\"C:\\Download\\hello.cpp\"");
return 0;
}
으아아아앙아아앙 f9가 안돼..............으어어어엉
#
*/
/*
#include <stdio.h>
int main()
{
printf("special characters\n[\\n,\\\",\\\\] is very important.");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("\"c:\\test\"");
return 0;
}
*/