take for example
# contains "stdio.h"
Master ()
{ int a = 100;
char b[4]= " ABCD ";
printf("%d ",a); // 100 is an integer, and the output needs% d.
printf("%s ",b); //abcd is a string to be output with% s.
}