What will be the output of the following program?
#includestdio.h

int main()
{
char *str;
str = "%d\n";
str++;
str++;
printf(str-2, 300);
return 0;
}

Posted on by