Dear all, look at this:
printf("℅d",3,3);
printf("%d %d");
It prints 333
The first 3 is printed as expected, the second goes to the buffer and is printed instead of the second "%d"
But the third "%d" not referred to any number or buffered data , it prints the third 3, where is this coming from?
Thx