/*
#include <stdio.h>
int main()
{
printf("123456");
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;
}
특수목적코딩학원
아이디 : ww1011@ww1011.com
코드업 아이디 : ww1011
*/
/*
#include <stdio.h>
int main()
{
printf("\"!@#$%%^&*()\"");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("\"C:\\Download\\hello.cpp\"");
return 0;
}
자료형
정수 int %d
정수 int %d
실수 float %f
실수 float %f
문자 char %c
문자 char %c
정수 integer -> int
실수 floating point -> float
문자 character -> char
*/