10 lines
108 B
C
10 lines
108 B
C
float add (float, float);
|
|
|
|
struct Student
|
|
{
|
|
int usn;
|
|
char *name;
|
|
};
|
|
|
|
void print (const struct Student);
|