习题 6.6 写一函数,求一个字符串的长度。在main函数中输入字符串,并输出其长度。

C++程序设计(第三版) 谭浩强 习题6.6 个人设计

习题 6.6 写一函数,求一个字符串的长度。在main函数中输入字符串,并输出其长度。

代码块:

#include 
using namespace std;
int stringlen(char *s);
int main()
{
    char str[20];
    cout<<"Please enter string: ";
    cin>>str;
    cout<<"String length: "<"pause");
    return 0;
}
int stringlen(char *s)
{
    char *p;
    int i;
    for (p=s, i=0; *p!='\0'; p++, i++);
    return i;
}

你可能感兴趣的:(C++程序设计,(第三版),谭浩强,课后答案)