61
What will be the output of the following C code?
#include <stdio.h>
void main()
{
char *s = "hello";
char *p = s * 3;
printf("%c\t%c", *p, s[1]);
} Answer & Solution
Answer: Option
C
No explanation is given for this question. Let's Discuss on Board