HOME .Net ASP Assembly C C++ Delphi HTML Java JavaScript MySQL PC interface Powershell Perl PHP VBScript Visual Basic XML
Make money selling software. Check this out here
Code snippets RSS feeds Magazines Forum Directory links webmaster resources training
Freelancers Computer book store All products
Free stuff Dropshippers Only PHP Make money from your website Scripts.com - Get the best scripts NOW!
Another simple example that displays the current date and time .
#include <stdio.h> #include <time.h>
int main() { time_t now; time(&now); printf("It's %.24s.\n", ctime(&now));
return 0; }
Information :
Tested in Visual C++ 6 and LCC win 32
Download :
displaytime.txt