Yêu cầu: tính độ dài của chuỗi
Thuật toán: đếm số kí tự đến khi gặp kí tự kết thúc (NULL)
Hoặc các bạn có thể sử dụng hàm strlen
Code:
/************************Length of string******************/
#include "stdio.h"
#include "conio.h"
long LengthOfString(char* s);
void main()
{
char s[] = "vncoding.net";
int len = LengthOfString(s);
printf("%d", len);
getch();
}
long LengthOfString(char* s)
{
int len = 0;
while(*s != NULL)
{
len++;
s++;
}
return len;
}
Kết quả:
1 |
12 |
Leave a Reply