Saved Bookmarks
| 1. |
With an example explain how structures can be initialized. |
|
Answer» Student stud = {“Athul”, 17,101, “XII Science”}; The above statement initializes structure variable stud of type student which has data members name, age, roll no, batch. |
|