Saved Bookmarks
| 1. |
A structure declaration is given below,struct Time{int hours;int minutes;int seconds;} t;Using above declaration which of the following refers to seconds.(a) Time.seconds(b) Time::seconds(c) seconds(d) t. seconds |
|
Answer» (d) t. seconds |
|