This is the output from the first printf statement:

printf("The value of count is %i",count);

The information in the Format String (the part
enclosed in double quotation marks) is literally printed
out as output.  Where the %i Format Character is
situated within the Format String, the value of a specific
integer is output.  The argument AFTER the Format String 
shows what specific value this will be: the value of the 
variable count.

In this example, since the value of count is 7,
the output is:

The value of count is 7