home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / tyc / list7_2.c < prev    next >
C/C++ Source or Header  |  1993-10-16  |  573b  |  19 lines

  1.    /* Demonstration using print() to display numerical values. */
  2.    
  3.    #include <stdio.h>
  4.    
  5.    int a = 2, b = 10, c = 50;
  6.    float f = 1.05, g = 25.5, h = -0.1;
  7.  
  8.    main()
  9.    {
  10.       printf("\nDecimal values without tabs: %d %d %d", a, b, c);
  11.       printf("\nDecimal values with tabs: \t%d \t%d \t%d", a, b, c);
  12.  
  13.       printf("\nThree floats on 1 line: \t%f\t%f\t%f", f, g, h);
  14.       printf("\nThree floats on 3 lines: \n\t%f\n\t%f\n\t%f", f, g, h);
  15.  
  16.       printf("\nThe rate is %f%%", f);
  17.       printf("\nThe result of %f/%f = %f", g, f, g / f);
  18.   }
  19.