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

Home
C / ANSI-C
1.assert.h
2.Console
3.ctype.h
4.Data Structure Algorithm
5.Data Type
6.Development
7.File
8.Function
9.Language Basics
10.Macro Preprocessor
11.Math
12.math.h
13.Memory
14.Pointer
15.setjmp.h
16.signal.h
17.Small Application
18.stdio.h
19.stdlib.h
20.String
21.string.h
22.Structure
23.time.h
24.wctype.h
C Tutorial
C++
C++ Tutorial
Visual C++ .NET
C / ANSI-C » Console » Formatted Output IntScreenshots 
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"1933330000);
   
   printf ("Preceding with blanks: %10d \n"1924);
   
   printf ("Preceding with zeros: %010d \n"1965);
   
   printf ("Some different radixes: %d %x %o %#x %#o \n"200200200200200);
   
   printf ("floats: %4.2f %+.0e %E \n"3.14163.14163.1416);
   
   printf ("Width trick: %*d \n"53140);
   
   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
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.