include<stdio.h>typedef struct st{ int id;}ST,*STP; //先定义类型 ST是结构类型 STP是结构指针类型int main(){ STP st[2];//这里st就是你要的结构指针数组 ST st1,st2;//这里我定义了2个结构变量,并赋值,让指针数组的元素分别指向这两个变量地址 st1.id=1;st2....
struct 结构体名 { 数据类型 字段名 ;}
结构体数组怎么声明?比如struct stu_{char name[11];};void input(***){}main(){struct stu_ stud[20];}在input中怎么声明?坐等答案谢谢老虾! 接近神的BT 大能力者 8 坐等!!! 我是不是师兄 帕秋莉糕 12 和普通变量一样的 接近神的BT 大能力者 8 什么意思?能写出来么?input(stud[20...
不知道你的ddd的结构原型是怎样,你需要预先在C#里定义好 ddd,才能在abc里声明,如果ddd内还嵌套,请依次类推
{ int fNo;char *fName;int fOffset;int fSize;int fType;} myFileList;class FileList{ public:FileList(int n){ pfile = new myFileList[n];for(int i = 0; i < n; i ++){ pfile[i].fNo = i;} } ~FileList(){delete []pfile; } public:int query(int num,myFileList *fl)...
答对了 在新标准出现之前只能逐一初始化
要不你把点儿前边的变量名去了试试?