#include <stdio.h>
int main(void)
{
printf("AA0BB0CC");
printf("|");
printf("AA\0BB\0CC");
printf("|");
printf("\0AA");
printf("|");
//print AA0BB0CC|AA||
return 0;
}
\0 문자열의 끝임을 알려줌. 문자열의 끝에는 항상 있음
'C > c언어 수업' 카테고리의 다른 글
array - enter ages of 5 ppl -> avg (0) | 2020.08.07 |
---|---|
QQ p436 null 쓰레기값 (0) | 2020.08.06 |
p416 배열 (0) | 2020.08.06 |
p385 산술시프트 / 논리시프트 (0) | 2020.08.06 |
p381 비트 쉬프트 연산자 (0) | 2020.08.06 |