Q. What will be the output of following statements ?
Code:
char x[ ] = “hello hi”; printf(“%d%d”,sizeof(*x),sizeof(x));
β
Correct Answer: (B)
19
char x[ ] = “hello hi”; printf(“%d%d”,sizeof(*x),sizeof(x));
You must be Logged in to update hint/solution