InterviewSolution
Saved Bookmarks
| 1. |
Write the output for the following C++ program. Assume the values for age as 23, height as 161.5 and weight as to#include using namespace std;struct Studentint age;float height weight;obj;int main()coutobj.age;coutobj.height;coutobj.weight;cout |
|
Answer» The OUTPUT is as FOLLOWS:ENTER the AGE: 23Enter the HEIGHT: 161.5Enter the weight: 52Your details :Age : 23Height : 161.5 Weight : 52 |
|