MIPI_AdvancedC_FRTK/Lect3/46.c

12 lines
247 B
C
Raw Permalink Normal View History

2024-11-14 08:45:50 +03:00
#include <stdio.h>
#include <time.h>
double DELAY = 3;
int main()
{
clock_t begin = clock();
while((double)(clock() - begin)/CLOCKS_PER_SEC<DELAY)
{/*printf("%4d\n",clock());*/ }
printf("Hello World %d",CLOCKS_PER_SEC);
return 0;
}