1 int add (float, float);
2 
3 struct Student
4 {
5   int usn;
6   char *name;
7   float percentage;
8 };
9 
10 void print (const struct Student);
11