/*
#include <stdio.h>
int main()
{
printf("12345");
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;
}
std + io
std :standard 표준
io : input, output 입출력
*/
/*
#include <stdio.h>
int main()
{
printf("\"C:\\Download\\hello.cpp\"");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("[\\n,\\\",\\\\] is very important.");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("special characters\n[\\n,\\\",\\\\] is very important.");
return 0;
}
변수 : data를 저장할 수 있는 공간 box
data의 종류 (자료형)
정수 ( 숫자, 소수점x)
실수 ( 숫자, 소수점o)
문자 (키보드 한 알) 'apple' (x) 'a' 'p'
정수 integer -> int
실수 floating point -> float
문자 character -> char (캐릭터, 차)
*********자료형************
선언 입출력
정수 int %d
실수 float %f
문자 char %c
*************************
1. 정수 변수 만들기( 선언)
int a;
2. 실수 변수 b 선언
float b;
3. 문자 변수 c 선언
char c;
정수 변수 선언,
정수 변수 출력
*/
/*
#include <stdio.h>
int main()
{
int a;
a = 10;
printf("%d",a);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
float b;
b = 1.234567;
printf("%f",b);
return 0;
}
규칙
1. 명령의 끝에는 ;(세미콜론)을 쓴다.
2. scanf에서는 변수 앞에 &주소를 적는다.
*/
//x = 'a';
/*
#include <stdio.h>
int main()
{
char x;
scanf("%c",&x);
printf("%c",x);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int c;
scanf("%d",&c);
printf("%d",c);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
char b;
scanf("%c",&b);
printf("%c",b);
return 0;
}
*/