Search Me..Find Best!

Happy Birthday Tobey Maguire

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

Showing posts with label time check. Show all posts
Showing posts with label time check. Show all posts

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;
}