Skip to content

Instantly share code, notes, and snippets.

@wh13371
Created June 19, 2026 10:23
Show Gist options
  • Select an option

  • Save wh13371/66398950980c0dc1198b7c519eb6b1cd to your computer and use it in GitHub Desktop.

Select an option

Save wh13371/66398950980c0dc1198b7c519eb6b1cd to your computer and use it in GitHub Desktop.
get the number of seconds since 1/1/1970
#include <stdio.h>
#include <time.h>
int main() {
int epoch_seconds = (int)time(NULL);
printf("epoch = %d\n", epoch_seconds);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment