C언어 문자열

(C 문자열에서 넘어옴)

1 개요[ | ]

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

2 같이 보기[ | ]

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