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

《你必须知道的495个C语言问题》笔记--结构、联合和枚举

时间:2014-07-22 23:04:35      阅读:363      评论:0      收藏:0      [点我收藏+]

标签:blog   os   io   2014   问题   re   

1.如何向接受结构参数的函数传入常量值?

c99标准中引入“复合字面量”(compound literals),它的一种形式就可以允许结构常量。例如,向假定的plotpoint函数
传入一个坐标对常量。
plotpoint((struct point){1,2});
与制定初始式结合,也可以用成员名称确定成员值:
plotpoint((struct point){.x=1, .y=2});

例子:
#include <stdio.h>
#include <termios.h>
#include <fcntl.h>
struct plotpoint{
                int x;
                int y;
        } p;

void point_print(struct plotpoint pp)
{
        printf("x=%d,y=%d\n",pp.x,pp.y);
}

int main(void)
{
        point_print((struct plotpoint){1,2});
        point_print((struct plotpoint){.x=3,.y=4});
        return 0;
}

运行结果:
x=1,y=2
x=3,y=4

《你必须知道的495个C语言问题》笔记--结构、联合和枚举,码迷,mamicode.com

《你必须知道的495个C语言问题》笔记--结构、联合和枚举

标签:blog   os   io   2014   问题   re   

原文地址:http://blog.csdn.net/todd911/article/details/24707387

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