/*
#include <stdio.h>#include <stdlib.h>
int main()
{
printf("Hello world!\n");
return 0;
}
*/
/*
#include<stdio.h>
int main()
{
printf("Hello, World!\n");
return 0;
}
*/
/*
#include<stdio.h>
int main()
{
printf("Hello,\nWorld!\n");
return 0;
}
*/
/*
#include<stdio.h>
int main()
{
printf("\"c:\\test\"");
return 0;
}*/
/*
#include<stdio.h>
int main()
{
printf("special characters\n");
printf("[\\n,\\\",\\\\] is very important.");
return 0;
}
변수 : 어떤 것을 담는 박스
변수 선언 : 박스를 만들어라
정수 5 100 0 -90
실수 4.5 3.14 -1.04
문자 'a' 'b' '+'
정수 integer -> int
실수 floating point -> float
문자 character -> char
정수 변수 a 선언
int a ;
실수 변수 b 선언
float b ;
char b ;
**************
정수 변수 a에 들어있는 값 출력하기
*********************
선언 입출력
정수 int %d
실수 float %f
문자 char %c
*********************
*/
/*
#include <stdio.h>
int main()
{
int a; // 정수 변수 a 선언
scanf("%d",&a); // 변수 a에 값 입력하기
printf("%d",a); //변수 a 값 출력하기
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
float x;
scanf("%f",&x);
printf("%f",x);
return 0;
}*/
/*
#include <stdio.h>
int main()
{
char x;
scanf("%c",&x);
printf("%c",x) ;
}*/