/**** epoch.c ***/ /** Output the epoch date (seconds since the Unix epoch) for systems that don't have the %s string in the date format argument. **/ #include #include main() { printf("%ld\n", time((long *) 0)); }