Parallel
fischer.lst
Associated article: Variable-Level Programming
Tags: Parallel
_Variable-Level Programming_
by Ronald Fisher
[LISTING ONE]
#include <dos.h>
#define AUXOUT 4 /* DOS function id for aux.output */
void auxout(char c)
/* Function: Sends character c to auxiliary output */
{ bdos(AUXOUT,c,0); /* generate INT 21 */ }
[LISTING TWO]
#include <...


