Print formatted data to stdout: how to use printf : Formatted Output Int « Console « C / ANSI-C






Print formatted data to stdout: how to use printf

 Print formatted data to stdout: how to use printf


#include <stdio.h>

int main()
{
   printf ("Characters: %c %c \n", 'a', 22);
   
   printf ("Decimals: %d %ld\n", 1933, 330000);
   
   printf ("Preceding with blanks: %10d \n", 1924);
   
   printf ("Preceding with zeros: %010d \n", 1965);
   
   printf ("Some different radixes: %d %x %o %#x %#o \n", 200, 200, 200, 200, 200);
   
   printf ("floats: %4.2f %+.0e %E \n", 3.1416, 3.1416, 3.1416);
   
   printf ("Width trick: %*d \n", 53, 140);
   
   printf ("%s \n", "A line of text.");
   return 0;
}



           
       








Related examples in the same category

1.Integer output variations
2.Variations on a single integerVariations on a single integer
3.Output justifyOutput justify
4.Formatted output: int, float and string
5.Output formatted ramdom integerOutput formatted ramdom integer