본문 바로가기
c++ 기초

#include <string>

by BitsrimAcrux 2025. 1. 21.
#include <iostream>
#include <string>

using namespace std;

int main() {
    string str;
    int size = str.length(); // str 길이
    
    return 0;
}
728x90

'c++ 기초' 카테고리의 다른 글

string 크기 설정  (0) 2025.01.25
string 길이 구하기  (0) 2025.01.25
숫자 입력 후 문자 입력 받기  (0) 2025.01.20
문자 입력  (0) 2025.01.20
아스키 코드 출력  (0) 2025.01.19