41. Determine Output:
void main()
{
char *p;
p="%d\n";
p++;
p++;
printf(p-2, 300);
}
void main()
{
char *p;
p="%d\n";
p++;
p++;
printf(p-2, 300);
}