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