码迷,mamicode.com
首页 > 其他好文 > 详细

the struct of c lauguage test code

时间:2018-11-09 10:53:13      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:\n   div   sans   int   clu   struct   run   span   include   

#include <stdio.h>


typedef struct i
{
    int a;
    char b;
    double c;
 
}u;

int main()
{  u j;                    //the struct define 1.
   struct i k;          //the struct define 1.
    j.a=1;
    k.b=3;
 
   printf("%d\n",j.a);
   printf("%d\n",k.b );

 /* the end of run is 1and 3           */

 

 

 

 

 

the struct of c lauguage test code

标签:\n   div   sans   int   clu   struct   run   span   include   

原文地址:https://www.cnblogs.com/lindar1/p/9933456.html

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