Monday, 28 January 2013

Get Free Recharge by using Pickzup Service

| |
2 comments
Hello Friends you might have heard about service that claims to pay you free mobile recharge or money making possibilities. So today i am going to share another good service that is free to use and also pays. This service is something same like mginger. Pickzup is another service launched with the same motto that many other website...
Read More

Sunday, 27 January 2013

Mama full movie

| |
0 comments
Details Description: Annabel and Lucas are faced with the challenge of raising his young nieces that were left alone in the forest for 5 years.... but how alone were they? Release: 18 Jan 2013Length: 1 Hour 33 MinsGenre: HorrorStarcast: Jessica Chastain, Nikolaj Coster-Waldau and Megan CharpentierNote: Download Mama - SCAM : Mama-sCAM-1.3gp...
Read More

Windows 8 and Office 2013 Activator

| |
0 comments
This activator includes activating windows 8, windows 7, Windows Server 2012, Windows Server 2008 R2, Office 2010, Office 2013.Please Follow the steps in the readme file And yes it has been tested many times by Us. IT 100% WORKS.    Size : 161.23 MB    Download From Oxava ...
Read More

Gangster Squad Full movie

| |
0 comments
Details Description: Los Angeles, 1949: A secret crew of police officers led by two determined sergeants work together in an effort to take down the ruthless mob king Mickey Cohen who runs the city.Release: 11 Jan 2013Length: 1 Hour 44 MinsGenre: Action | Crime | Drama Starcast: Sean Penn, Ryan Gosling and Emma StoneNote: Download...
Read More

Son of Sardar full movie download

| |
0 comments
Details Description: This tale of two warring Sardar families features Ajay Devgn who plays Rajveer an innocent Sikh, torn between a family feud. His bad luck leads to a comedy of errors which makes this film a rip-roaring laugh riot! The film stars Ajay Devgn, Sonakshi Sinha and Juhi Chawla in leading roles. Ashwani Dhir...
Read More

Race 2 full movie

| |
0 comments
Details Description: Saif Ali Khan returns with a vengeance as Ranvir Singh! But thats not all, this time, joining him is a glamorous line up of sexy and talented actors like John Abraham, Deepika Padukone and Jacqueline Fernandez. Of course there will be the usual dose of fast cars, racy action sequences in exotic foreign...
Read More

Raw results: CM Punk survives TLC and clashes on the mic with The Rock

| |
0 comments
John Cena challenged Dolph Ziggler to a match PHOTOS TAMPA, Fla. - One week later, and it looks like Dolph Ziggler's still stewing over the suspect slop that was dumped on him from above on New Year's Eve, bringing his 2012 to a messy end and humiliating The Showoff just days after his biggest victory over John Cena to date. Still,...
Read More

Tuesday, 22 January 2013

Facebook hacking easy

| |
0 comments
Hello Guys, today in this article I am going to introduce you another java based remote keylogger for hacking Facebook Account Password. This IStealKeys is the best and perfect Facebook hacker tool for hacking facebook password. Since today the technology has advanced to next generation, now its become quite easy to hack the email accounts,...
Read More

Program to insert number into an array

| |
0 comments
#include<iostream> using namespace std; int main() {     int x,n,p[n],q[n],i,j,a;     cout<<"Enter the number of elements in array :""\n";     cin>>n;     cout<<"Enter "<<n<<" integers in ascending or descending order:\n";     for(i=1;i<=n;i++)  ...
Read More

Friday, 18 January 2013

C++ program to print star pattern

| |
0 comments
#include<iostream> #include<math.h> using namespace std; int main() {     int i,j,k,l,n,m;     cout<<"Enter the number of rows :""\n";     cin>>n;         for(i=0;i<n;i++)     {                     cout<<"\n";                     for(k=(n-i);k>0;k--)  ...
Read More

C ++ program to print ABC in Matrix

| |
0 comments
#include<iostream> using namespace std; int main() {     char x=65;     int i,j,n;     cout<<"Enter the number of rows :""\n";     cin>>n;     for(i=0;i<n;i++)     {                 cout<<"\n";                 for(j=i;j>=0;j--)        ...
Read More

Thursday, 17 January 2013

Linear search c plus plus program

| |
0 comments
#include<iostream> using namespace std; int main() { int sc[100],n,count=0,y; cout<<"How many numbers u want to enter?"; cin>>y; cout<<"Enter the numbers"; for(int i=0; i<y; i++) {cin>>sc[i];} cout<<"Enter a number for the query! "; cin>>n; for(int j=0; j<y;j++) {if(sc[j]==n) { count=count+1; }} if(count==1) {             cout<<"The requred...
Read More

Function for Cube

| |
0 comments
#include<iostream> using namespace std; int main() { int cube(); int area(); cout<<"The Cube is \n"<<cube(); cout<<"The area is \n" <<area(); system ("pause");} int cube() {int a,x; cout<<"Enter the side for which the cube is foind\n";     cin>>a;         x=a*a*a;     return x; }        int area()    {int b,y;  ...
Read More

Function ( Binary and Linear Search)

| |
0 comments
#include<iostream> using namespace std; int main() { int linearsearch(); int binarysearch(); cout<<"The number found via linear search\n"<<linearsearch(); cout<<"The number found via Binary search\n" <<binarysearch(); system ("pause");} int linearsearch() {int sc[100],n,count=0,y; cout<<"How many numbers u want to enter?"; cin>>y; cout<<"Enter the numbers"; for(int i=0; i<y;...
Read More

Fibbonacci Series C ++ program

| |
0 comments
#include<iostream> using namespace std; int main() {         int a,b,c,i,n;     cout<<"Upto How many elements " <<endl;     cin>>n;     cout<<"a : ";     cin>>a;     cout<<"b : ";     cin>>b;           for (i=0;i<n;i++) { c=a+b;     a=b; b=c; cout<<c;} system...
Read More

Factorial c plus plus program

| |
0 comments
#include<iostream> using namespace std; int main() { int a[10],n,beg,end,mid,x; cout<<"\nNo of element in array\t"; cin>>n; cout<<"enter the element\n"; for(int i=0;i<n;i++) { cin>>a[i]; } cout<<"\nenter item to be searched\t"; cin>>x; beg=0;end=n; mid=(beg+end)/2; while(beg<=end&&a[mid]!=x) { if(x<a[mid]) { end=mid-1; } else { beg=mid+1; } mid=(beg+end)/2; } if(a[mid]==x) { cout<<"\nItem...
Read More

Binary Search C plus plus program

| |
0 comments
#include<iostream> using namespace std; int main() { int a[10],n,beg,end,mid,x; cout<<"\nNo of element in array\t"; cin>>n; cout<<"enter the element\n"; for(int i=0;i<n;i++) { cin>>a[i]; } cout<<"\nenter item to be searched\t"; cin>>x; beg=0;end=n; mid=(beg+end)/2; while(beg<=end&&a[mid]!=x) { if(x<a[mid]) { end=mid-1; } else { beg=mid+1; } mid=(beg+end)/2; } if(a[mid]==x) { cout<<"\nItem...
Read More

2d Array program

| |
0 comments
#include<iostream> using namespace std; int main() {     int array[3][3], a ,b,x,y;     cout<<"Enter the no. for the 2D arrays seperated by space :\n";     for(int n=0; n<3; n++)     {             for (int i=0;i<3;i++)     {cin>>array[n][i]  ;   }}         for(int n=0; n<3; n++)    ...
Read More

Thursday, 10 January 2013

Free Internet Hack for Airtel 2013 (Working For Mobile And PC)

| |
5 comments
UPDATE: Latest 2013 trick is here, click me. This is my first post of this year 2013. I wish you all a very happy new year. This year is going to bring a cyber-revolution all over the world. Starting from the world of mobile/Phablets to Android based smart TV and Folding paper tablets everything is going to be revolutionized at a very rapid...
Read More
Related Posts Plugin for WordPress, Blogger...
Powered by Blogger.