#include <iostream>
#include <string>
using namespace std;
int main()
{
string name = "Robert Taylor";
int size = name.size();
cout << "Name is "<<name<<endl;
cout << "Length of his name is "<<size;
cin >> size;
return 0;
}
스트링의 길이를 계산해주는 함수이다.
728x90
'공부 > 프로그래밍' 카테고리의 다른 글
[C언어] 백준 5639번 이진 검색 트리 (0) | 2019.07.20 |
---|---|
[C언어] 반복문 printf 출력에서 마지막엔 \n(줄바꿈) 안하게 하기 (0) | 2019.06.24 |
C++ 이자율을 통한 미래 금액 계산하기 (0) | 2019.05.28 |
switch 문 (0) | 2019.05.18 |
[c언어]에서 strlen()를 대체할 수 있는 방법.c (0) | 2019.05.13 |