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_time.c

11 lines
192 B
C

#include <stdio.h>
#include <bios.h>
void main()
{
long time_of_day;
_bios_timeofday( _TIME_GETCLOCK, &time_of_day );
printf( "Ticks since midnight: %lu\n", time_of_day );
}