#include <stdio.h>
int main()
{
printf("10110210310410512");
return 0;
}
In gcc compiler when I execute this code it prints ABCDE
. If I call printf
with a string like printf("101110210310410512")
it prints A1BCDE
. Why does it behave like this?