"C++ 문자열"의 두 판 사이의 차이

(새 문서: ==개요== ;C++ 문자열 ==멤버 함수== * {{접두어링크|C++ 문자열|begin()}} * {{접두어링크|C++ 문자열|end()}} * {{접두어링크|C++ 문자열|rbegin()}} * {{접...)
 
1번째 줄: 1번째 줄:
==개요==
==개요==
;C++ string
;C++ 문자열
;C++ 문자열
<syntaxhighlight lang='cpp' run>
#include <iostream>
#include <string>
using namespace std;
int main() {
    string s = "hello";
    cout << s.length(); // 5
}
</syntaxhighlight>


==멤버 함수==
==멤버 함수==

2023년 9월 10일 (일) 17:32 판

1 개요

C++ string
C++ 문자열
#include <iostream>
#include <string>
using namespace std;

int main() {
    string s = "hello";
    cout << s.length(); // 5
}

2 멤버 함수

3 참고

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