اینم برای تکمیل کار:
#include <sys/time.h>
#include <time.h>
#include <stdlib.h>
#include <stdio.h>
int main(void)
{
char buffer[30];
int h;
struct timeval tv;
time_t curtime;
gettimeofday(&tv, NULL);
curtime=tv.tv_sec;
strftime(buffer,30,"%T",localtime(&curtime));
printf("%s\n",buffer);
return 0;
}
برای کامپایل:
gcc -o timeshow.o timeshow.c
./timeshow.o