MCQOPTIONS
Saved Bookmarks
| 1. |
#include using namespace std;class X{public:int x;};int main(){X a = {10};X b = a;cout |
| A. | compiler error |
| B. | 10 followed by garbage value |
| C. | 10 10 |
| D. | 10 0 |
| Answer» E. | |