home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 98.img / LCNOW2.ZIP / EXAMPLES / NUMBERS.C < prev    next >
C/C++ Source or Header  |  1988-01-05  |  221b  |  16 lines

  1. /*
  2.  * N U M B E R S
  3.  *
  4.  * Show how to print strings that involve
  5.  * both text and numbers.
  6.  */
  7.  
  8. main()
  9. {
  10.     int n1, n2;
  11.  
  12.     n1 = 10;
  13.     n2 = 3;
  14.     printf("The number %d is bigger than the number %d.\n", n1, n2);
  15. }
  16.