size of array 博客分类: c
程序员文章站
2024-03-17 23:58:16
...
#define num(x) (sizeof (x) / sizeof (*x)) int main(){ int number[10] = {1,1,1,1,1,1}; char *teststr[20] = {"","","","","","","","",""}; printf("Size of number[10] is %d\n", (int)num(number)); printf("Size of teststr[20] is %d\n", (int)num(teststr)); return 0; }
推荐阅读
-
std::map 博客分类: c++
-
lost on Py_DECREF/INCREF when handling PyList_Append in Python C extension 博客分类: pythonc++c pythonc
-
size of array 博客分类: c
-
std::map 博客分类: c++
-
使用JConsole监控c3p0的连接情况 博客分类: tomcatjava数据库 监控c3p0JConsolejmx
-
阿里巴巴Java代码规约插件p3c-pmd 博客分类: 代码检查插件 代码检查插件
-
不安装Visual Studio,只用Windows SDK搭建VC环境 博客分类: c++tools c++tools
-
使用simple_flow实现实时系统的监控 博客分类: simple_flowc++ c++系统监控simple_flow流式计算
-
编写一个程序,以每行一个单词的形式打印其输入 博客分类: C C
-
编写一个将输入复制到输出的程序,并将其中连续的多个空格用一个空格代替。 博客分类: C C