what is the output of the following code:
[code=c]
main()
{
char p[]="%d\n";
p[1]='c';
printf(p,65);
}
[/code]
i need the explanation of the output.
[code=c]
main()
{
char p[]="%d\n";
p[1]='c';
printf(p,65);
}
[/code]
i need the explanation of the output.
Comment