/*
#include <stdio.h>
int main()
{
printf("가나다라마바사아자차카하");
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;
}
*/
/*
#include <stdio.h>
int main()
{
printf("\"c:\\test\"");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("special characters\n[\\n,\\\",\\\\]is very important.");
return 0;
}
*/
/*
Data(자료) : 메모리에 저장되는 모든 값
Data type (자료형)
정수 -> 숫자, 소수점x -> 5 100 0 -500
실수 -> 숫자, 소수점o -> 3.14 -0.07
문자 ->키보드 한 알 -> 'a' '5' '0' '+'
정수 integer -> int
실수 floating point -> float
문자 character -> char(캐릭터, 차)
**********자료형******
변수선언 입출력
정수 int %d
실수 float %f
문자 char %c
*********************
대입 : 집어넣기
#include <stdio.h>
int main()
{
int a; // 정수 변수 a 선언
a = 10; // 변수a에 10 대입
printf("%d",a);// 정수 변수 a 출력
printf("\n");
float b;
b = 3.141592;
printf("%f",b);
printf("\n");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
char o;
o='r';
printf( "%c ",o);
return 0;
}
*/