/* * time.c * * return time, eh? */ #include #include int main(){ int t; t = time(NULL); printf(" The time is %i \n", t); return 0; }