/*
#include <stdio.h>
int main()
{
printf("Hello");
return 0;
}
*/
/*#include <stdio.h>
int main()
{
printf("Hello");
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;
}
*/
/*
*******자료형*******
정수 inf %d
실수 float %f
문자 char %c
*******************
*/
/*
#include <stdio.h>
int 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;
}
*/
/*
#include <stdio.h>
int main()
{
int a,b;
scanf("%d %d",&a,&b);
printf("%d %d",a,b);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
char x,y;
scanf("%c %c",&x,&y);
printf("%c %c",y,x);
return 0;
}
/슬래시
\ 백슬래시
#include <stdio.h>
//std io h
//standard inputoutput header
정수 숫자 30 123 -50 0
실수 숫자 (소수) 0.123 3.14 -8.444
문자 'a' '+' 'z' 'A'
정수 integer -> int
실수 부동소수점 -> floating point -> float
문자 character -> char (캐릭터)
규칙
1. 명령의 끝에는 ; (세미콜론) 꼭 적어준다.
2. scanf를 사용할때는
변수 앞에 &주소를 적어야한다.
#include <stdio.h>
int main()
{
int a; // 정수 변수 a 선언
scanf("%d",&a); //정수 변수 a 입력
printf("%d",a);//정수 변수 a 출력
return 0;
}