Format prints text on display and arguments, when they are specified. For example: to print two int values and char value you should write something in this shape:
1 2 3 4
int Number=2;
int AnotherNumber=56;
char Symbol='R';
printf("Number is %d, another number is %d and symbol is %c", Number, AnotherNumber, Symbol);