/*
#include <stdio.h>
int main()
{
printf("ㅗㄹ올홀허ㅛ");
return 0;
}
; 세미콜론
*/
/*
#include <stdio.h>
int main()
{
printf("Hello");
return 0;
}
\ 백슬래시
"를 출력하고싶다 \"
#include <stdio.h>
//포함해! standard input output 기본입출력
int main() // main이라는 프로그램 이다 .
{
printf("Hello World");
return 0; //main 이제 끝!
}
#include <stdio.h>
int main()
{
printf("Hello");
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;
}
*/
/*
#include <stdio.h>
int main()
{
printf("\"C:\\Download\\hello.cpp\"");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("Hello,World!");
return 0;
}
#include <stdio.h>
int main()
{
printf("Hello,\nWorld!");
return 0;
}
1. 코드업 -> 내문제집 -> 숙제
2. 특수목적코딩학원
-> start&install -> codeblocks 설치
dy0413@dy0413.com
dy0413
*/