
Codeup.kr/C언어 기초 100제
[Code up 문제] 1006번 출력하기 06번
1. 정답 코드 #include int main() { printf("\"!@#$%%^&*()\""); return 0; } 2. 코드 설명 따옴표는 앞전에 설명 했었고 %를 출력 할 때는 %%를 사용 해 줘야한다.
1. 정답 코드 #include int main() { printf("\"!@#$%%^&*()\""); return 0; } 2. 코드 설명 따옴표는 앞전에 설명 했었고 %를 출력 할 때는 %%를 사용 해 줘야한다.