Examveda

What is the output of the following code: struct Point { int x, y; }; Point p1; p1.x = 10; p1.y = 20; cout << p1.x << " " << p1.y; in C++?

A. Garbage value 20 10

B. 10 20

C. Compilation error

D. None of the above

Answer: Option B


Join The Discussion

Related Questions on Structures and Unions in C plus plus

What is a structure in C++?

A. A collection of functions

B. A reserved keyword in C++

C. A user-defined data type containing variables of different data types

D. A way to declare arrays of data