求字符串的长度
问题:
输入一个字符串,用指针求出字符串的长度。
View Code
1 #include <iostream>
2 using namespace std;
3
4 int Count(char * p)
5 {
6 int num =0;
7 while(*p != '\0')
8 {
9 num++;
10 p ++;
11 }
12 return num;
13 }
14
15 void main()
16 {
17 char str[50];
18 cin >> str;
19
20 cout << Count(str) << endl;
21 }
测试:
12345
5
请按任意键继续. . .