当前位置: 代码迷 >> C语言 >> [求助]基础问题,求解(解决)
  详细解决方案

[求助]基础问题,求解(解决)

热度:118   发布时间:2007-03-16 18:07:00.0
我不是已经写了吗?用这个运算符 "."

AAA.iNum

AAA.ILength
----------------解决方案--------------------------------------------------------

#include <stdio.h>
main()
{
int a=8,c;
struct tagMystruct
{
int iNum;
long ILength;
}

AAA.ILength=a;
c=AAA.ILength;
printf("%d",c);
}

运行,错误


----------------解决方案--------------------------------------------------------

你还没有定义那个变量AAA

#include <stdio.h>
main()
{
int a=8,c;
struct tagMystruct
{
int iNum;
long ILength;
};
struct tagMystruct AAA;

AAA.ILength=a;
c=AAA.ILength;
printf("%d",c);
}

[此贴子已经被作者于2007-3-16 18:42:20编辑过]


----------------解决方案--------------------------------------------------------
哦,谢谢啊,今天长知识了啊
----------------解决方案--------------------------------------------------------
  相关解决方案