헤더 string.h
형태 size_t strlen( const char *str)
인수 char *str 길이를 구할 문자열
반환 문자열 길이를 바이트 단위로 반환합니다.
#include <stdio.h>
#include <string.h>
int main()
{
char * a = "apple";
printf ("length = %d, %s \n" , strlen(a), a);
}
$ ./a.out
length = 5, apple
'Language > C언어' 카테고리의 다른 글
스레드(pthread_join, pthread_create), example (0) | 2014.06.13 |
---|---|
[유닉스고급프로그래밍] 4-22 디렉터리 계통구조를 재귀적으로 따라 내려가면서 파일 종류 통계를 구하는 프로그램 (0) | 2014.05.15 |
memset함수 (0) | 2014.05.09 |
10진수 2진수, 8진수, 16진수로 표현 - - C Programming (0) | 2011.10.06 |
const키워드 기능 (0) | 2011.03.07 |