Declaration:
void _printf(char format[], ... );
Description
Acts like printf, but does not append the newline character to the line.
Note. Your arguments passed to this function shall match the format line. In case of mismatch, the <%CM%> program may crash, because it cannot check the correspondence between the format string and parameters passed.
|