1.

What will be the output of the following C code?
#include <stdio.h>
int main()
{
double *p = (double *)150;
p = p + 5;
printf("%u", p);
}

A. 150
B. 160
C. 170
D. 180
E. 190
Answer» F.


Discussion

No Comment Found