Saved Bookmarks
| 1. |
Complete the following structure definition, to store students details with appropriate values. Students details are roll number, name and height..... Struct students{..... mochar .......... height}; |
|
Answer» struct students { short rno; char name[25]; float height; }; |
|