Q. What would be the output of the following program (in 32-bit systems)?
Code:
#include
using namespace std;
int main()
{
cout << sizeof(char);
cout << " "<< sizeof(int);
cout << " "<< sizeof(float);
return 0;
}
β
Correct Answer: (A)
1 4 4