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

  1.  /* Demonstrates printer output. */
  2.  
  3.  #include <stdio.h>
  4.  
  5.  main()
  6.  {
  7.      float f = 2.0134;
  8.  
  9.      fprintf(stdprn, "This message is printed.\n\n");
  10.      fprintf(stdprn, "And now some numbers:\n\n");
  11.      fprintf(stdprn, "The square of %f is %f.", f, f*f);
  12.  
  13.      /* Send a form feed. */
  14.  
  15.      fprintf(stdprn, "\f");
  16.  }
  17.