C Tutorial/stdio.h/printf
printf
Item Value Header file stdio.h Declaration int printf(const char *format, ...); Function display message by format. Return the number of characters actually printed. A negative value indicates failure.
#include <stdio.h>
int main(void){
printf("Hi %c %d %s", "c", 10, "there!");
}