Basic Introduction to Programming with C

Format specifiers are the “% things” used as placeholders for values. Some examples are: %f float %lf double (long float) %e float using exponent notation %g float using shorter of e or f style %d decimal integer %ld decimal long integer %x hexadecimal (hex or base 16) integer ................
................