38
110
342
资深技术员
使用特权
1180
3万
11万
版主
2782
1万
6万
#include <stdio.h> #include <stdlib.h> #define GET_ARRAY_LEN(array,len){len = (sizeof(array) / sizeof(array[0]));} //定义一个带参数的 宏,将数组长度存储在变量len中 int main() { char a[] = {'1','2','3','4'}; int len; GET_ARRAY_LEN(a,len) //调用预定义的宏,取得数组a的长度,并将其存储在变量len中 printf("%d\n",len); system("pause"); return 0; }
3
62
186
中级技术员
0
49
148
dirtwillfly 发表于 2015-10-10 20:56 sizeof(a)/sizeof(int)
194
6565
资深工程师
191
5955
182
7463
2万
技术总监
124
5199
245
5383
193
3057
9230
技术达人
发表回复 本版积分规则 回帖后跳转到最后一页
等级类勋章
发帖类勋章
时间类勋章
人才类勋章
1