/*
코드업 아이디
아이디: lbh160721
비밀번호: lbh160721
*/
//
//#include <stdio.h>
//
//int main()
//{
// printf("Hello world!\n");
// return 0;
//}
/*
"를 출력하려면 \"로 써야한다
복사 copy : ctrl + c
붙여넣기 paste : ctrl + v
코드를 쓸려면 코드 제출을 눌러러야 됀다.
슬래시별이랑 별슬래시 안에 있는 내용은
컴퓨터가 신경쓰지 않는다
\를 출력하기 위해선 \\ 를 사용해야 한다
*/
/*
#include <stdio.h>
int main()
{
printf("\"Hello World\"");
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("\"!@#$%^&*()\"");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("\"C:\\Download\\ hello.cpp\"");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("\"c:\\test\"");
return 0;
}
*/