代码
#include<stdio.h>
main()
{
char a[20];char *p;
printf("请输入小于20的字符串");
scanf("%s",a);//a是数组名,就是指针,代表首地址。
p=a;
while(*p!=‘\0‘)p++;
printf("%d",p-a);
}
原文地址:https://www.cnblogs.com/T0807/p/9865500.html
时间: 2024-10-02 20:51:01
代码
#include<stdio.h>
main()
{
char a[20];char *p;
printf("请输入小于20的字符串");
scanf("%s",a);//a是数组名,就是指针,代表首地址。
p=a;
while(*p!=‘\0‘)p++;
printf("%d",p-a);
}
原文地址:https://www.cnblogs.com/T0807/p/9865500.html