This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/WATCOM/samples/clibexam/b_print.c

11 lines
190 B
C

#include <stdio.h>
#include <bios.h>
void main()
{
unsigned short status;
status = _bios_printer( _PRINTER_STATUS, 1, 0 );
printf( "Printer status: 0x%2.2X\n", status );
}