"C언어 문자열"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-source +syntaxhighlight))
2번째 줄: 2번째 줄:
;C 문자열
;C 문자열


<source lang='c'>
<syntaxhighlight lang='c'>
#include <stdio.h>
#include <stdio.h>
int main() {
int main() {
9번째 줄: 9번째 줄:
     // Hello World!
     // Hello World!
}
}
</source>
</syntaxhighlight>
<source lang='c'>
<syntaxhighlight lang='c'>
#include <stdio.h>
#include <stdio.h>
int main() {
int main() {
17번째 줄: 17번째 줄:
     // Hello World!
     // Hello World!
}
}
</source>
</syntaxhighlight>
<source lang='c'>
<syntaxhighlight lang='c'>
#include <stdio.h>
#include <stdio.h>
int main() {
int main() {
27번째 줄: 27번째 줄:
     // YellowWorld!
     // YellowWorld!
}
}
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==

2020년 11월 2일 (월) 02:41 판

1 개요

C 문자열
#include <stdio.h>
int main() {
    char s[] = "Hello World!";
    printf(s);
    // Hello World!
}
#include <stdio.h>
int main() {
    char s[] = "Hello World!";
    printf("%s", s);
    // Hello World!
}
#include <stdio.h>
int main() {
    char s[] = "Hello World!";
    s[0] = 'Y';
    s[5] = 'w';
    printf(s);
    // YellowWorld!
}

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}