-
how i make my c print?
hey all..
i want to make my c program print some of the outputs to a dot matrix printer connected to the parallel port.
the print screen button on my keyboard does not help when running my program in windows.
can i force my program to perform a print screen and not coppying the screen into the clipboard?
tx in advance
-
This link may help
http://www.experts-exchange.com/Prog..._10227846.html
basicly after includeing standerd output you need to open the printer device and save it into a var
ptr=fopen(lptx) or something like that
then when you print a line include ptr as the device to print to
lptx would be lpt1 or 2 or whaever lpt the printer you want is on.