char *ch2="abc";
printf("strlen(ch2)=%d",strlen(ch2));
---编译警告:
warning #2181-D: argument is incompatible with
corresponding format string conversion
printf("strlen(ch2)=%d",strlen(ch2));
^
后来,我定义一个变量
int a;
a=strlen(ch2);
printf("strlen(ch2)=%d", a);
这样就没有警告了。
aluckdog
拉莫斯之舞
holdtom
相关分类