Skip to content

Instantly share code, notes, and snippets.

@fanjc320
Created July 12, 2017 13:19
Show Gist options
  • Select an option

  • Save fanjc320/b9aada94a6fe3f6d009ffc42d7f40955 to your computer and use it in GitHub Desktop.

Select an option

Save fanjc320/b9aada94a6fe3f6d009ffc42d7f40955 to your computer and use it in GitHub Desktop.
strftime 格式化打印时间
char bufTime[64];
time_t now = time(NULL);
tm* lt = localtime(&now);
strftime(bufTime, 64, "%F %T", lt);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment