C언어 문자열

Jmnote (토론 | 기여)님의 2019년 3월 21일 (목) 22:12 판 (새 문서: ==개요== ;C 문자열 <source lang='c'> #include <stdio.h> int main() { char s[] = "Hello World!"; printf(s); } </source> <source lang='c'> #include <stdio.h> int main() {...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

개요

C 문자열
#include <stdio.h>
int main() {
    char s[] = "Hello World!";
    printf(s);
}
#include <stdio.h>
int main() {
    char s[] = "Hello World!";
    s[0] = 'Y';
    s[5] = 'w';
    printf(s);
    // YellowWorld!
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}