永发信息网

C语言请教个问题

答案:2  悬赏:80  手机版
解决时间 2021-04-26 10:43
  • 提问者网友:放下
  • 2021-04-26 01:43

#include <stdio.h>
#include <conio.h>
#include <stdlib.h>

struct student
{
int xuehao; //学号
char name[30]; //姓名
int score[30]; //三门课程的成绩
double chengji; //平均成绩
};

struct student stu[100]; //声明一个结构数组变量

struct student dd();//


void sysManager();
void ki();

void sy();
void dsdeff(struct student stud[],int count);
void debook(struct student stud[],int count);
void decool(struct student stud[],int count);
void del(struct student stud[],int count);

上面的这些函数;如下

void dsdeff(struct student stud[],int count);
void debook(struct student stud[],int count);
void decool(struct student stud[],int count);
void del(struct student stud[],int count);

这种声明是什么意思,函数里面还有数组,我没有见过,这样有什么含义

最佳答案
  • 五星知识达人网友:街头电车
  • 2021-04-26 02:44
就是函数的声明,函数声明是指函数的定义在后面,而前面需要对它进行调用,这样就需要预先作声明,一般来说函数的声明只是函数首部加上分号即可,而函数定义是指对函数的完整定义:包括函数首部和函数体。函数声明并不总是必须的:当你调用的函数是整型、字符型或此前定义的,则调用时不需作声明。
全部回答
  • 1楼网友:零点过十分
  • 2021-04-26 03:58

数组也可以作为函数的参数

我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯