VOOZH about

URL: https://www.geeksforgeeks.org/c/c-program-print-characters-without-using-format-specifiers/

⇱ C program to print characters without using format specifiers - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

C program to print characters without using format specifiers

Last Updated : 29 Oct, 2017
As we know that there are various format specifiers in C like %d, %f, %c etc, to help us print characters or other data types. We normally use these specifiers along with the printf() function to print any variables. But there is also a way to print characters specifically without the use of %c format specifier. This can be obtained by using the below-shown method to get the character value of any ASCII codes of any particular character. Example: Output:
G 
E 
E 
K 
S
Comment
Article Tags: