/*#include <stdio.h>
int main()
{
printf("hellowhtioew");
명령
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;
}
자료형
정수 (소수점아래없는 숫자 5 10 500 ...)
실수 (소수점아래 있는 숫자 3.14 ...)
문자 (키보드 한 알 'a' 'b' ...)
정수 integer -> int
실수 floating point -> float
문자 character -> char(차x 캐x)
**********************
선언 입출력
정수 int %d
실수 float %f
문자 char %c
**********************
이름이 a이고, 정수를 저장하는 박스 하나 만들기
정수 변수 a 선언
int a;
실수 변수 b 선언
float b;
문자 변수 x 선언
char x;
정수 변수 1개 a에 입력받으세요 (&주소)
scanf("%d",&a);
정수 변수 1개 출력하세요
printf("%d",a);
*/
/*
#include <stdio.h>
int main()
{
int ss;
scanf("%d",&ss);
printf("%d",ss);
return 0;
}
*/
#include <stdio.h>
int main()
{
char a;
scanf("%c",&a);
printf("%c",a);
return 0;
}