Q. What is the output of the following C++ program?
Code:
#include <iostream>
using namespace std;
int main ( )
{
static double i;
i = 15;
cout << sizeof(i);
return
β
Correct Answer: (C)
8