1.

What is the output of this program?
#include 
using namespace std;
struct second
{
int p;
char q;
};
int main()
{
struct second sec ={30,210};
struct second *ps =(struct second *)&sec;
cout << ps->p <q;
return 0;
}

A. 303
B. 304
C. F 30
D. 03 F
E. 30 F
Answer» F.


Discussion

No Comment Found