Vidyalelo
C Programming · Q227

Pointer

Programming · C Programming · question 227

Q227

What will be the output of the following C code? #include void main() char a[10][5] = "hi", "hello", "fellows"; printf("%d", sizeof(a[1]));

A.
2
B.
4
C.
5
Answer
D.
10

Answer: Option C

Solution

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