"C++ strlen()"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-source +syntaxhighlight))
 
(같은 사용자의 중간 판 2개는 보이지 않습니다)
2번째 줄: 2번째 줄:
;C++ strlen()
;C++ strlen()


<syntaxhighlight lang='cpp'>
==C 스타일==
<syntaxhighlight lang='cpp' run>
#include <iostream>
#include <iostream>
#include <cstring>
#include <cstring>
10번째 줄: 11번째 줄:
}
}
</syntaxhighlight>
</syntaxhighlight>
<syntaxhighlight lang='c'>
<syntaxhighlight lang='cpp' run>
#include <stdio.h>
#include <stdio.h>
#include <string.h>
#include <string.h>
20번째 줄: 21번째 줄:
==C++ 스타일==
==C++ 스타일==
{{참고|C++ .length()}}
{{참고|C++ .length()}}
<syntaxhighlight lang='cpp'>
<syntaxhighlight lang='cpp' run>
#include <iostream>
#include <iostream>
#include <string>
#include <string>
29번째 줄: 30번째 줄:
}
}
</syntaxhighlight>
</syntaxhighlight>


==같이 보기==
==같이 보기==

2021년 5월 12일 (수) 00:38 기준 최신판

1 개요[ | ]

C++ strlen()

2 C 스타일[ | ]

#include <iostream>
#include <cstring>
using namespace std;
int main() {
	cout << strlen("abc") << endl; // 3
}
#include <stdio.h>
#include <string.h>
int main() {
    printf("%d", strlen("abc")); // 3
}

3 C++ 스타일[ | ]

#include <iostream>
#include <string>
using namespace std;
int main() {
    string s = "abc";
    cout << s.length() << endl; // 3
}

4 같이 보기[ | ]

5 참고[ | ]

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