I'am student in the university
my qustion is
how can i initialize stds array to print the information of all student ..
i have to buld this function on case 1
i have buld arrays and write all function prototype
#include<iostream>
#include<cstring>
#include<iomanip>
using namespace std;
int const size=6;
void getinfo(int *ID, char fname[size][30],char lname[size][30],char department[size][30],double *GPA);
void fullname(char full[size][60],char fname[size][30] ,char lname[size][30]);
void printInfo(int *ID, char fullname[size][60],char lname[size][30]);
int searchID(int *ID, int id);
void searchdepartment(char department[size][30],char dep[30], int *stds);
int beststudent(double *GPA);
void beststudent(double *GPA, int *in);