I am calling a function funcB from funcA.
funcB uses several printf statements to output data.
Is there a way for me to c
If nothing else in your program uses printf, you can write your own version and link it explicitly. The linker will not look in the standard library if the function is already defined. You can probably use vsprintf for the implementation, or some safer version with overrun checking if it is supplied by your compiler.