2019-11-13 00:05:45
#include <stdio.h>#include <stdlib.h>struct Game{ char cName[20]; int iNumber; struct Game* pNext;};int iCount;struct Game* Create(){ struct Game* pHead=NULL; struct Game* pEnd,*pNew; iCount=0; pEnd=pNew=(struct Game*)malloc(sizeof(struct
2019-11-12 22:10:41
#include <stdio.h>#include <stdlib.h>struct Clerk { char cName[20]; int iNumber; struct Clerk* pNext;};int iCount;struct Clerk* creat(){ struct Clerk* pHead; struct Clerk* pEnd,*pNew; iCount=0;
2019-11-12 21:40:13
#include <stdio.h>#include <stdlib.h>struct Clerk { char cName[20]; int iNumber; struct Clerk* pNext;};int iCount;struct Clerk* creat(){ struct Clerk* pHead; struct Clerk* pEnd,*pNew; iCount=0;
2019-11-11 01:13:48
#include <stdio.h>#include <stdlib.h>struct Clerk{ char cName[20]; int iNumber; struct Clerk* pNext;};int iCount;struct Clerk* Create(){ struct Clerk* pHead=NULL; struct Clerk* pEnd,*pNew; iCount=0; pEnd=pNew=(struct Clerk*)malloc(sizeof(
2019-11-06 00:04:32
#include <stdio.h>struct date{ int year; int month; int day;};struct student{ char name[30]; int num; char sex; struct date birthday;}student={"suYuQun",12052212,'w',{1986,12,6}};int main(){ printf("-----Information-----\
2019-11-05 23:51:28
#include <stdio.h>struct Student{ char cName[20]; float fScore[3];}student={"SuYuQun",98.5f,89.0,93.5f};void Display(struct Student* stu){ printf("-----Information----\n"); printf("Name:%s\n",stu->cName); printf
2019-11-05 23:26:02
#include <stdio.h>struct Student{ char cName[20]; float fScore[3];}student={"SuYuQun",98.5f,89.0,93.5f};void Display(struct Student stu){ printf("-----Information------\n"); printf("Name:%s\n",stu.cName); printf(&q
2019-11-05 23:11:42
#include <stdio.h>struct Student{ char cName[20]; int iNumber; char cSex; int iGrade;}student[5]={{"wangjiasheng",12062212,'M',3},{"YuLongjiao",12062213,'w',3},{"JiangXuehuan",12062214,'w',3
2019-11-05 22:20:33
#include <stdio.h>#include <String.h>struct Sweat{ char cName[20]; int iNumber; char cColor[20];}sweat;int main(){ struct Sweat* pStruct; pStruct=&sweat; strcpy(pStruct->cName,"毛呢外套"); pStruct->iNumber=599; strcpy(pStr
2019-11-05 21:54:14
#include <stdio.h>struct Book{ char cName[20]; int iNumber; char cS[20];}book={"electric",56,"134-467"};int main(){ struct Book* pStruct; pStruct=&book; printf("------the bookcase.s information-----\n"); printf