赞
踩
一、介绍
1、C语言的语法能造就一些有趣的代码,下面便是一些有趣代码的示例。
二、有趣代码锦集
1、数组变量的有趣使用
(1)代码
- //
- #include <stdio.h>
-
- int main()
- {
- int num[] = {1,2,3,4}
- printf("the 3[num] result is : %d\n", 3[num]);
- return 0;
- }
- //
(2)输出结果是:4
(3)分析:num[3] == *(num +3) == *(3 + num) == 3[num]
致谢
1、《嗨翻C》
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。