-
What will be the output of the following C code?
#include <stdio.h>
void main()
{
char *ch[7] = {"Welcome", "To", "Interview", "Mania"};
int k = 0;
for (k = 0; k < 7; k++)
printf("%s ", ch[k]);
}
-
- Welcome To Interview Mania
- (null) (null) (null)
- Welcome To Interview Mania (null) (null) (null)
- Compilation Error
- None of these
Correct Option: C
Welcome To Interview Mania (null) (null) (null)