Which of the following is not a C function?
Tprintf is not a C function. But printf, f printf and sprintf is a C function.
printf:-
In C programming language, printf() function is used to print the “character, string, float, integer, octal and hexadecimal values” onto the output screen.
f printf:-
The fprintf() function is used to write set of characters into file. It sends formatted output to a stream. Syntax: int fprintf(FILE *stream, const char *format [, argument, ...])
sprintf:-
The sprintf() works just like printf() but instead of sendingoutput to console it returns the formatted string. Syntax: int sprintf(char *str, constchar *control_string, [ arg_1, arg_2, ... ]); The first argument to sprintf() function is a pointer to the target string.