Saved Bookmarks
| 1. |
Declare a structure that contains the data of a student? |
|
Answer» struct student { int regno; char name[20]; char class[5]; char combination[4]; float fees; } st[100]; |
|