C++ 문자열 length()

Jmnote (토론 | 기여)님의 2023년 9월 10일 (일) 17:35 판 (Jmnote님이 C++ .length() 문서를 C++ 문자열 length() 문서로 이동했습니다)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요[ | ]

C++ .length()
C++ 문자열 length()
#include <iostream>
using namespace std;

int main() {
    string s = "hello";
    cout << s.length(); // 5
}
#include <iostream>
using namespace std;
int main() {
	string str = "abcdef";
	cout << str.length() << endl; // 6
}

2 같이 보기[ | ]

3 참고[ | ]

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