Vidyalelo
C Programming · Q92

Pointer

Programming · C Programming · question 92

Q92

What will be the output of the following C code (considering sizeof char is 1 and pointer is 4)? #include int main() char *a[2] = "hello", "hi"; printf("%d", sizeof(a)); return 0;

A.
9
B.
4
C.
8
Answer
D.
10

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board