码迷,mamicode.com
首页 > 其他好文 > 详细

char 指针如何判断字符串需要输出长度

时间:2018-05-02 16:08:37      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:a.out   字符   为什么   int   ret   ring   col   如何   str   

先上代码:

 1 #include <stdio.h>
 2 #include <string.h>
 3 
 4 
 5 const char g_ip[32] = "123456789";
 6 int func1(const char *ip)
 7 {
 8         printf("ip:%s\n",ip);
 9         printf("ip size:%d\n",sizeof(ip));
10         if(*ip == \0)
11                 printf("ip is none\n");
12         printf("g_ip:%s\n",g_ip);
13         printf("g_ip size:%d\n",sizeof(g_ip));
14         if(*ip == \0)
15                 printf("g_ip is none\n");
16         return 0;
17 }
18 
19 int main()
20 {
21         const char ip[32]="ABCDEFG";
22         func1(ip);
23         return 0;
24 }

运行结果:

[zyc@localhost ~]$ ./a.out
ip:ABCDEFG
ip size:8
g_ip:123456789
g_ip size:32

看8、9行代码,为什么ip是一个char指针, 但是%s的时候却知道到底要printf多长???

 

char 指针如何判断字符串需要输出长度

标签:a.out   字符   为什么   int   ret   ring   col   如何   str   

原文地址:https://www.cnblogs.com/fallenmoon/p/8979683.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!