Ads 468x60px

Saturday, 9 March 2013

Earn Money by Referals

Yes you can earn money, it is quite easy. But one thing which I should clear you first. If you are thinking to be rich quickly and earn millions then this is probably not the right place for you. Now lets come to the point, I was searching for some website to earn money online. I have found one this is probably a very good site.
Earnyouth.com is a website that is paying for referring members. 

Now what you have to do for earning from this website?
Simply go to the website by clicking here. Now Register on the website; you will get a unique referral link. Just post the link to your facebook walls and everywhere. 
For every visit of your link you will get about $1.
And for every signup by your referral you will get about $3. 
And for being an active member you will get about $10 weekly. 

Payment Method
Once you reach $15, you can withdraw your payment by paypal and other available methods on this website. 
They are providing:
1) PayPal
2) Bank Wire
3) Cheque
4) Western Union
These methods to withdraw your earnings.

Now you can start earning by signing up from here.  

Sunday, 10 February 2013

Fevicol Se Nagpuri Version Mp3 Download

The superhit item song from the movie Dabangg 2 named Fevical Se is now available in Nagpuri Version also. The song is from a nagpuri album named Fevicol Selem. The song is sung by some Nagpuri Artist in the same composition. The original song is from the blockbuster movie Dabangg 2, the original song is composed by Sajid Wajid and sung by Mamta Sharma and Wajid.  The song was also a blockbuster in bollywood and it is also a huge hit in Jhollywood. 
Download Mp3 

Saturday, 9 February 2013

Main Tainu Samjhawaan Ki Unplugged by A.Rahman Mp3 Download

A. Rahman covers Main Tenu Samjhawan Ki. The Original song is sung by the legendary singer Rahat Fateh Ali Khan. The song is from the Punjabi Language Film named Virsa. Originally the song is composed by Jawed Ahmed. But the credit for this unplugged version goes to A. Rahman. 


Download the audio in mp3 format

Saturday, 19 January 2013

Facebook Punch

Want to hit someone with a strong punch in Facebook? Sounds Crazy Right? But its true. Actually I am talking about an surprising chat smiley which looks like a punch coming from a wall. 
Facebook Punch
Want to surprise your friend by sending them this BOOM!! Just Copy the codes given below and send them to your friends in facebook chat box.

Facebook Punch
[[488850267812232]] [[488850257812233]] [[488850271145565]] [[488850261145566]] [[488850264478899]] 
[[488850344478891]] [[488850331145559]] [[488850334478892]] [[488850337812225]] [[488850341145558]] 
[[488850434478882]] [[488850424478883]] [[488850427812216]] [[488850421145550]] [[488850431145549]] 
[[488850494478876]] [[488850497812209]] [[488850501145542]] [[488850504478875]] [[488850507812208]] 
[[488850607812198]] [[488850611145531]] [[488850601145532]] [[488850604478865]] [[488850597812199]] 

Finding Sum of Two Matrix C++ Program

This program will firstly ask the user to input the number of rows and columns of the matrix that he want to add then the program will ask to user to enter the elements of the matrix after taking the input it will display the matrix that entered with the sum. 

#include<iostream.h>
#include<conio.h>
void main()
{
 clrscr();
 //variables
 int r,c, mat1[10][10], mat2[10][10], sum[10][10];
 int i,j;

 //input part begin
 cout<<"Enter the number of rows:\t";
 cin>>r;
 cout<<"Enter the number of columns:\t";
 cin>>c;
 cout<<"Enter the elements of the matrix 1:\n";

 for(i=0;i<r;i++)
 {
  for(j=0;j<c;j++)
  {
   cout<<"Row "<<i+1<<", Column "<<j+1<<":\t";
   cin>>mat1[i][j];
  }
 }

 cout<<"Enter the elements of the matrix 2:\n";

 for(i=0;i<r;i++)
 {
  for(j=0;j<c;j++)
  {
   cout<<"Row "<<i+1<<", Column "<<j+1<<":\t";
   cin>>mat2[i][j];
  }
 }
 //input parts end

 //displaying the matrices entered

 cout<<"Matrix 1:\n";
 for(i=0;i<r;i++)
 {
  for(j=0;j<c;j++)
  {
   cout<<mat1[i][j];
   cout<<"\t";
  }
  cout<<endl;
 }

 cout<<"Matrix 2:\n";
 for(i=0;i<r;i++)
 {
  for(j=0;j<c;j++)
  {
   cout<<mat2[i][j];
   cout<<"\t";
  }
  cout<<endl;
 }

 //calculation part begin
 cout<<"The sum of the matrices are:\n";
 for(i=0;i<r;i++)
 {
  for(j=0;j<c;j++)
  {
   sum[i][j]=mat1[i][j]+mat2[i][j];
  }
 }
 //calculation part end

 //displaying the sum in matrix form
 for(i=0;i<r;i++)
 {
  for(j=0;j<c;j++)
  {
   cout<<sum[i][j];
   cout<<"\t";
  }
  cout<<endl;
 }
 getch();
}
Any queries regarding this code, feel free to ask by commenting here.. 

C++ Program to Reverse an Integer

This program will ask user to input a number and then it will calculate the reverse of the number and print that as the output. Data type long int is used in this program. 
#include<iostream.h>
#include<conio.h>
void main()
{
 clrscr();
 long int num,r=0;
 cout<<"Enter an integer:\t";
 cin>>num;
 while(num>0)
 {
  r=r*10;
  r=r+num%10;
  num=num/10;
 }
 cout<<"\nThe Revers of the number is "<<r<<endl;
 getch();
}
Explanation of the program
Two variables are declared one is for the number which is to be reversed and that will be defined by the user as an input and the other is r in which we will store the reverse of the number. 
Now the main task is happening in the loop, while loop is used in this program. 
Suppose we entered 123 
Now num = 123
The expression of while loop is true (123 is greater than 0); the control will come inside the loop and will execute the following statement
{
 r=r*10;
 r=r+num%10;
 num=num/10;
}
Now dry run it in your mind. 
r is initialized by 0 at the starting of the program, so we have the values 
r = 0;
num = 123;
Now calculate what will happen 
the value of r become 0 in first line. 
Then it will become 3
r = 0 + 123 % 10; 
r = 0 + 3;
r = 3
Now in the last statement num will become 12
num = 123 / 10;
num = 12
Because we have taken the data type as int so it will not take the decimal value. 
Now all the statements has executed so the loop will again check its expression which is again true (12 is greater than 0), so the control will again come inside the loop and will execute the statements with updated values, this process will continue until the expression in while don't become false and at last it will print the reversed value as the output.