#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 <<" "<< ps->q; return 0; }
30 F
Previous Question Next Question
Your comments will be displayed only after manual approval.