Q. What is the output of the following C++ program?
Code:
#include <iostream>
using namespace std;
int main()
{
cout << sizeof(char);
cout << sizeof(int);
cout << sizeof(float);
return 0;
}
β
Correct Answer: (C)
1 4 4