首页 > 用户发贴区 > 编程问题提问区 > 哪位帮我看看下面的C程序有什么问题
2008
09-18

哪位帮我看看下面的C程序有什么问题

#include<stdio.h>
#include<string.h>
struct studeunt
{
 int num;
 char name[20];
    float score[3];
};
void main()
{
 void print(struct student);
 struct student stu;
 stu.num=12345;
 strcpy(stu.name,”Li Li”);
 stu.score[0]=67.5;
 stu.score[1]=89;
    stu.score[2]=78.6;
 print(stu);
}
void print(struct student stu)
{
 printf(“%d\n%s\n%f\n%f\n%f\n”,stu.num,stu.name,stu.score[0],stu.score[1],stu.score[2]);
 print(“\n”);
}


我运行的时候发现第11行黑体部分有错.请问错在什么地方.


谢谢.


哪位帮我看看下面的C程序有什么问题》有 1 条评论

  1. 765650970 说:

    结构体名studeunt错误应改成student
    倒数第二行print改为printf

    现在应该没有什么问题了

留下一个回复