Search Me..Find Best!

Sunday, April 6, 2014

Time Date World Clock on every Programmer PC

Here Is a Program For you in C++ that will Check the Current time in Your City...
World date time converter 
this is Programmer own clock... Whic Country You is... This Programm will Show you !
/*courtesy : imagzi.blogspot.com
and facebook.com/Programershub */
#include<iostream>
using namespace std;
#include<time.h>//amzing library used for
int main()
{
time_t rawtime;
time(&rawtime);
cout<<"The current local time is : %s "<< ctime(&rawtime);
return 0;
}

0 comments:

Post a Comment