/*
#include <stdio.h>
int main()
{
printf("1213456");
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;
}
자료형
정수 (숫자, 소수점없는애들) integer -> int
실수 (숫자, 소수점아래있는애들)floating point -> float
문자 (문자,키보드 한 알) character -> char (캐릭터)
변수 : 자료를 저장하는 공간
정수를 저장할 수 있는 변수 a를 준비해주세요
정수 변수 a 선언
int a;
실수를 저장할 수 있는 변수 c를 준비해주세요
float c;
char t;
*********자료형*********
선언 입출력
정수 int %d
실수 float %f
문자 char %c
***********************
*/
#include <stdio.h>
int main()
{
printf("special characters\n");
printf("[\\n,\\\",\\\\] is very important.");
return 0;
}