#include int main() { int i=10,j=20; printf(\"%d%d%d\",i,j); printf(\"%d\",i,j); return 0; }
Using the Turbo C compiler,
The first call to printf() has one too many format specifiers, resulting in undefined behaviour. In this case a garbage value is printed.
printf()