I am trying to learn C and am very confused already.
In the OOP languages i have used there exists the ability to perform method overloading, where the same function cou
(Don't forget that, if you're using gcc (and g++?), you can pass -Wformat
in the compiler options to get the compiler to check that the types of the arguments match the formatting. I hope other compilers have similar options.)
Could anyone here explain how C performs the above task?
Blind faith. It assumes that you have ensured that the types of the arguments match perfectly with the corresponding letters in your format string. When printf
is called, all the arguments are represented in binary, unceremoniously concatenated together, and passed effectively as a single big argument to printf
. If they don't match, you'll have problems. As printf
iterates through the format string, every time it see %d
it will take 4 bytes from the arguments (assuming 32-bit, it would be 8 bytes for 64-bit ints of course) and it will interpret them as an integer.
Now maybe you actually passed a double
(typically taking up twice as much memory as an int
), in which case printf
will just take 32 of those bits and represented them as an integer. Then the next format field (maybe a %d
) will take the rest of the double.
So basically, if the types don't match perfectly you'll get badly garbled data. And if you're unlucky you will have undefined behaviour.