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/lldiv.c

19 lines
357 B
C
Raw Normal View History

#include <stdio.h>
#include <stdlib.h>
void print_time( long long int ticks )
{
lldiv_t sec_ticks;
lldiv_t min_sec;
sec_ticks = lldiv( ticks, 100 );
min_sec = lldiv( sec_ticks.quot, 60 );
printf( "It took %lld minutes and %lld seconds\n",
min_sec.quot, min_sec.rem );
}
void main( void )
{
print_time( 73495132 );
}