/*
#include <stdio.h>
int main()
{
printf("fgudrtyfgh");
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; // main 함수 종료해라
}
*/
/**
규칙
1. 명령의 끝에는 ;(세미콜론)을 쓴다
2. scanf에서는 변수 앞에 &주소를 쓴다
3.
return 0; main 함수를 종료해라
#include <stdio.h> //stdio.h라는 파일을 포함해서 컴파일해라
std standard 표준
io input+output 입출력
*/
/*
#include <stdio.h>
int main()
{
printf("special characters\n[\\n,\\\",\\\\] is very important.");
return 0;
}
*/
/**
data type ( 자료형 ) -> 데이터의 종류
선언 입출력
정수 int %d (%o 8진수, %x 16진수)
실수 float %f
문자 char %c (캐릭터 , 차)
*/
/*
#include <stdio.h>
int main()
{
int a; // 정수 변수 a 선언
a = 50; // 정수 변수 a에 50 값 대입
printf("%d",a); // 정수 변수 a 출력
return 0;
}
*/
// 미션1. 3.141592를 저장하는 실수 변수 선언, 대입, 출력
/*
#include <stdio.h>
int main()
{
float a;
//a = 3.141592;
scanf("%f",&a);
printf("%f",a);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int n;
scanf("%d",&n);
printf("%d",n);
return 0;
}
*/
/*
#include <stdio.h>
char main()
{
char x;
scanf("%c",&x);
printf("%c",x);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
float x;
scanf("%f",&x);
printf("%f",x)
return 0;
}
*/



