Printing on a printer : Print « Development « C / ANSI-C






Printing on a printer


#include <stdio.h>
void main()
{
   fprintf( stdprn, "Print from c.");
   fprintf(stdprn, "\n \r Hiiiiiiii?\n\r");
   fprintf(stdprn, "\n\r Hello.\f");
}


           
       








Related examples in the same category