C - Programming Language
This course covers the basics of programming in C. Work your way through the videos/articles and I'll teach you everything you need to know to start your programming journey!

Printf

Lesson 8
Author : 🦒
Last Updated : November, 2017


  • %c character
  • %d integer number (base 10)
  • %e exponential floating-point number
  • %f floating-point number
  • %i integer (base 10)
  • %o octal number (base 8)
  • %s a string of characters
  • %u unsigned decimal (integer) number
  • %x number in hexadecimal (base 16)
  • %% print a percent sign
  • % print a percent sign