/*
#include <stdio.h>
int main()
{
printf("Hello world!\n");
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("\"c:\\test\"");
}
#include<stdio.h>
int main()
{
printf("\"C:\\Download\\hello.cpp\"");
return 0;
}
컴퓨터에 저장하는 모든 값 : 자료
자료의 종류 - 자료형
정수 (소수가 아닌 수) 3, 7 ,10 100, 100 ...
실수 (소수) 3.14, 7.568794, 1.0248
문자 (글자) a, b, c, % , !
int a; //정수변수 만들기
int hj;
int smarthj;
printf("n"); //n이라는 글자를출력
printf("%d",n); //변수 n의 값을 출력
1. 정수 변수 만들기 (이름은 형진이 맘대로지으세요)
#include <stdio.h>
int main()
{
int ASDFGHJKL = 1000;
printf("%d",ASDFGHJKL);
}
*/