Created
July 13, 2015 07:58
-
-
Save d30jeff/8020a8a1e36ca0b2e1d8 to your computer and use it in GitHub Desktop.
C.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #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