What is the output of this program? #include <iostream><br /> using namespace std;<br /> struct sec {<br /> int a;<br /> char b;<br /> };<br /> int main()<br /> {<br /> struct sec s ={25,50};<br /> struct sec *ps =(struct sec *)&s;<br /> cout << ps->a << ps->b;<br /> return 0;<br /> }

Correct Answer: 252

In this program, We are dividing the values of a and b, printing it.