/*
규칙1. c언어 프로그램을 만드려면 아래 틀을 일단 써야한다.
#include <stdio.h>
int main()
{
쓰고싶은 명령;
return 0;
}
규칙2. 명령의 끝에는 ; 세미콜론 을 쓴다.
*/
/*
#include <stdio.h>
int main()
{
printf("안녕!");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("you are an idot!!!!marcus says tom says im telling mr fullerman!!!marcus says oh no!! mr fullerman says -10000000000000000000merits for you marcus! marcus says drat!!");
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 = standard 기본
io = input+output 입력출력
/ 슬래시
\ 백슬래시
\n
#include <stdio.h>
int main()
{
printf("Hello\nWorld");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("Hello, World!");
return 0;
}
*/