#include "stdafx.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void main(){
char *c="licheng";
//使用strlen()方法获取指针指向的字符串长度
printf("字符长度为(strlen方法):%d\n",strlen(c));
//通过遍历获取字符串长度
int num = 0;
while(*c){
printf("%c",*c);
c++;
num++;
}
printf("字符长度为(遍历):%d\n",num);
system("pause");
}
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void main(){
char *c="licheng";
//使用strlen()方法获取指针指向的字符串长度
printf("字符长度为(strlen方法):%d\n",strlen(c));
//通过遍历获取字符串长度
int num = 0;
while(*c){
printf("%c",*c);
c++;
num++;
}
printf("字符长度为(遍历):%d\n",num);
system("pause");
}