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

28번째 줄: 28번째 줄:
}
}
</source>
</source>
==같이 보기==
* [[C언어 printf()]]


[[분류: C 문자열]]
[[분류: C 문자열]]

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