Predict output of following code:
#include<stdio.h>
int main()
{
char *s;
char string[] = "Hey What Doing ?";
s = string;
s += 3;
printf("%s",s);
return 0;
}


Posted on by