Vidyalelo
C Programming · Q91

Pointer

Programming · C Programming · question 91

Q91

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

A.
fellows
B.
fellow
C.
fello
Answer
D.
fell

Answer: Option C

Solution

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