Table of contents
코드
#include <stdio.h>
void my_strlen(char *);
void main()
{
char fruit[20] = "Starwberry";
my_strlen(fruit);
printf("%s\n",fruit);
}
void my_strlen(char *des)
{
int count=0;
while(*des != '\0')
{
count++;
des++;
}
printf("%d글자입니다",count);
}
'소프트웨어 > C' 카테고리의 다른 글
C언어 상수 선언을 위한 Const 예제 (0) | 2022.02.20 |
---|---|
C언어 파일 입출력 예시 (0) | 2022.02.20 |
C언어 strcpy 함수 구현하기 (0) | 2022.02.20 |
C언어 문자열 포인터 Swap 예시 (0) | 2022.02.20 |
C언어 동적 할당 및 해제 malloc 예시 (0) | 2022.02.20 |