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.

Wednesday, April 9, 2014

How to Earn easily... No Fake No Scam

Hi People i am Sharing a way to Make money By reffering Some of Your Good Urls... As you seen
Urls Like tha : http://adf.ly/?id=6035704
Go and Signup here http://adf.ly/?id=6035704
Short your Large URLS and Get paid For every Click You share...
They will play ad on Your Site for 5 Seconds and Then For Every 1000 Clicks They will Pay you $8 so start YOur Earnings Now in easy way...
No scam not Fake!
For details and Usage Comment Below...
And Share it with friends so that they can Also Earn Good from their Resources...
Your Earnings depends upon to how much People You share Your Shorten URL 
Stay Blessed and LIke our Page for more cool updates.

Sunday, April 6, 2014

C++ Source Code For Calculating The Population of a Country

c program example for calculating the Population of A country Using Classes in Object Oriented Programming... Object oriented Programming in C++
Course code is CS 241
Enjoy :)

/*courtesy imagzi.blogspot.com
*/

#include<iostream>
using namespace std;
class cntry{
private:
int pvn;
int ppl;
string name;
public:
cntry()//To initialize the values by constructor
{
cout<<"Enter the name of the country : ";
cin>>name;
}
void display()//display the cntry class data members
{
cout<<"The "<<name<<"'s ";
}
};
//to calculate and display the data members of province we make another class
class province{
private:
int cities,ppltn,a=0,pv[4];
public:
province()
{
cout<<"Entet the number of cities in the country : ";
cin>>cities;
cout<<"\nPlease enter the population of 4 province : ";
for(int i=0;i<=3;i++)
{
cin>>pv[4]; 
}

}
int add();
void display()
{
cout<<" has "<<cities<<" cities and "<<" 4 provinces .";
cout<<"\n the total Population of the country is : "<<a;
}


                                 
};
int province::add()
{
for(int i=0;i<=4;i++)
{
a+=pv[i];
 
}
return a;
}

int main()
{
cntry c;
province p;
c.display();
p.display();
}

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

Learning c++-stringlength in C++ and String size in C++

//For amzing source codes,ebooks and projects keep visiting imagzi.blospot.com

//Program used to find the length of the String and size of the String 

//courtesy imagzi.blospot.com

#include<iostream>
#include<iomanip>
#include<cstring>
using namespace std;
int main()