본문 바로가기
프로그래밍/C, C++

[C언어] ' " ! @ # $ % ^ & * ( ) 출력하기

by JR2 2021. 4. 1.
#include <stdio.h>

int main(void)
{
	printf("\"C:\\Download\\hello.cpp\"");

	printf("쌍따옴표는 이렇게 쓰면 된다. \"\"");

	return 0;
}

사용하고 싶은 기호 앞에 \(Back slash)를 붙혀주면 잘~ 작동한다.

댓글