Skip to content

Instantly share code, notes, and snippets.

@kauevestena
Created September 21, 2015 20:25
Show Gist options
  • Save kauevestena/efc2b7602aa6b7b85d8f to your computer and use it in GitHub Desktop.
Save kauevestena/efc2b7602aa6b7b85d8f to your computer and use it in GitHub Desktop.
string dateTimeString()
{
//return a string with the date and time
time_t rawtime;
time (&rawtime);;
return ctime(&rawtime);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment