C언어 문자열

Jmnote (토론 | 기여)님의 2019년 3월 21일 (목) 22:13 판

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 }}