Codeup.kr/C언어 기초 100제
[Code up 문제] 1007번 출력하기 07번
Jongung
2021. 9. 2. 17:11
1. 정답 코드
#include <stdio.h>
int main()
{
printf("\"C:\\Download\\hello.cpp\"");
return 0;
}
2. 코드 설명
\를 사용할 때는 \\를 넣어줘야 한다는 것을 기억 해야 한다.