Thread: help
View Single Post
Mentor
27Nov2012,19:33  
xpi0t0s's Avatar
What do you think the following code will display?
Code:
#include <stdio.h>
char*s="AAA %c %s %c BBB";
main()
{
printf(s,'\"',s,'\"');
}