#include<stdio.h> #include<time.h> int main(){ time_t timep; long seconds = time(&timep); printf("%ld\n",seconds); printf("%ld\n",timep); return 0; }