2008
04-19

#include<conio.h>
#include<dos.h>
#include<graphics.h>
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<ctype.h>
typedef struct sturecord  /*库结构*/
{
char rq[10];
char mc[10];
char zl[10];
char gg[10];
char sl[10];
char dj[10];
char je[10];
char bz[10];
struct  sturecord*nextlink;
struct  sturecord*lastlink;
}stu;
stu*p;
main()
{
char *name;
stu*p;
name=”asd”;
p=(stu*)malloc(sizeof(stu));
strcpy(p->mc,name);
outtextxy(10,10,p->mc);
getch();
exit(0);
}
我这个程序那个地方错了,请高人指教,本人不胜感激!


留下一个回复