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

A) 252

B) 253

C) 254

D) 262

View Answer
Option – A.