/*
stdio.h -> std (standard) io(input,output)
#include <stdio.h>
int main()
{
printf("Hello ys");
return 0; // main 프로그램 종료
}
*/
/*
#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;
}
c언어의 자료형 ( 정수, 실수, 문자)
정수 int or long long int
실수 float or double
문자 char
정수 -> integer -> int
실수 -> floating point -> float
문자 -> character -> char ( 캐릭터 or 차 )
************************************
선언 입출력
정수 int %d
long long int %lld
실수 float %f
double %lf
문자 char %c
**************************************
#include <stdio.h>
int main()
{
int a; // 정수 변수 a 선언
a = 10;
int b = 50;
//printf("%d",a);
printf("%d %d\n",a,b);
float c = 3.141592;
printf("%f",c);
return 0;
}
#include <stdio.h>
int main()
{
//1. 정수 변수 선언
int a;
//2. 정수 변수 입력 ( 변수 앞에 & 주소 붙여주기)
scanf("%d",&a);
//3. 정수 변수 출력
printf("당신이 입력하신 숫자는 %d입니다.",a);
return 0;
}
*/
/*
#include <stdio.h>
int main ()
{
int a;
scanf("%d", &a);
printf("%d",a);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
char a;
scanf("%c",&a);
printf("%C",a);
return 0;
}
*/
/*
#include <stdio.h>
int main ()
{
float a;
scanf("%f",&a);
printf("%f",a);
return 0;
}
*/