c语言计算字符串的长度(用指针)

日期:2019-05-27 15:38:45 人气:1

c语言计算字符串的长度(用指针)

#include int main() { char s[20]; char*p; printf("please input a string(less than 20 character):\n"); //scanf("%s",s);不能读入空格 gets(s); p=s; while(*p!='\0') p++; printf("The string lenth is%d\n",p-s)
    A+
热门评论