Guess the output of the following C code
#includestdio.h
int main()
{
char *ptr;
char string[] = "learn C learnC.com";
ptr = string;
ptr +=1;
printf("%s",ptr);
return 0;
}


Posted on by