I was (quickly) writing some code and accidently inverted the arguments in scanf():
scanf()
char i[] = \"ABC1\\t\"; scanf(i, \"%s\");
Comp
I suppose it shouldn't.
int scanf ( const char * format, ... );
i was normally converted to a const char*, all the rest parameters are just "ellipsis" and cannot be checked at compile time.
i
const char*