Q. What is the output of the following program?
Code:
#include
using namespace std;
int main()
{
int p = 10;
float q;
cout << sizeof(++p + q);
cout << " "< return 0;
}
β
Correct Answer: (D)
4 10