码迷,mamicode.com
首页 > 编程语言 > 详细

使用 sizeof 获取字符串数组的大小

时间:2018-11-01 16:05:40      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:字符   分享图片   name   取数   stdio.h   std   字符串   pfile   pre   

@2018-11-1

字符串组成的数组存放于指针数组中,使用 sizeof 获取数组大小

【验证】

 1 #include <stdio.h>
 2 
 3 
 4 #define BootScreen            "1:开机画面.jpg"
 5 #define Computer0             "1:computer0.dta"
 6 #define Linkage0              "1:linkage0.dta"
 7 #define Linkage1              "1:linkage1.dta"
 8 
 9 #define WriteFileName         Computer0
10 
11 char *pFile[] = {BootScreen, Computer0, Linkage0, Linkage1};
12 
13 
14 int main(void)
15 {
16     printf("%d\n", sizeof(pFile)/sizeof(*pFile));
17 }

【结果】

技术分享图片

 

使用 sizeof 获取字符串数组的大小

标签:字符   分享图片   name   取数   stdio.h   std   字符串   pfile   pre   

原文地址:https://www.cnblogs.com/skullboyer/p/9889461.html

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