Skip to content

Instantly share code, notes, and snippets.

@d30jeff
Created July 13, 2015 07:58
Show Gist options
  • Select an option

  • Save d30jeff/8020a8a1e36ca0b2e1d8 to your computer and use it in GitHub Desktop.

Select an option

Save d30jeff/8020a8a1e36ca0b2e1d8 to your computer and use it in GitHub Desktop.
C.
#include <stdio.h>
#include <time.h>
int main()
{
time_t mytime;
mytime = time(NULL);
printf(ctime(&mytime));
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment