What is the output of this code?
    #include iostream
using namespace std;
int main()
{
int g = 8;
void *p = &g;
int *pi = static_castint*(p);
cout *pi endl;
return 0;
}

Posted on by