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