What is the output of the following program?
#includestdio.h

void main()
{
char *s = "C++";
printf("%s ", s);
s++;
printf("%s", s);
}

Posted on by