Saturday 18 October 2014

Grand Theft Auto San Andreas APK + SD DATA Files Download (Android)

Grand Theft Auto San Andreas  cost 6.99$ in play store . Download it for free here :) ENJOY


PLAYSTORE LINK CLICK HERE 

Requirements: Android 3.0 and up
Size: 2.4GB
Rating: 2.1/5
Type: Arcade & Action







Instructions:
- Extract and install APK (DO NOT LAUNCH YET)
- Extract SD DATA and copy ‘com.rockstargames.gtasa’ Folder to sdcard/Android/obb
- Launch the Game

NOTE1: DO NOT LAUNCH THE GAME BEFORE PUTTING SD DATA folder in /obb
NOTE2: if one apk doesn't work for you, try another apk below
NOTE3: the old SD DATA will work for any version so if you have it no need to redownload
NOTE4: Before uninstalling the game to install some other version RENAME data folder so as not to lose it while uninstalling.
NOTE5: For MOD APK, in game menu select Resume, or Start and Load game, not New Game!

DOWNLOAD DATA+APK

CLICK HERE 

Friday 1 August 2014

INSTALL AVG INTERNET SECURITY 2015 FOR FREE

HERE IS A METHOD TO INSTALL THE AVG INTERNET SECURITY FOR FREE

ITS VERY EASY.

CLICK HERE TO INSTALL AVG .

AFTER INSTALLATION OPEN AVG INTERNET SECURITY

 THEN GO TO OPTION/ACTIVATE

PASTE THIS CODE 8MEH-RF3MY-BZ7CJ-9LUAR-ST99N-CEMBR-ACED   AND PRESS ACTIVATE
DONE :)

Thursday 10 July 2014

Hot spot shield elite free download +crack (to change ip)

Hi fren, Here many of you are trying to change the ip address of your

now, heres the simple way to change the ip address. By using hotspot shield(hss).

This is the easy to to change the ip address just go to google search for hotspot sheild

and download it for free. You just need to install nothing more than that. :)


Download link :click here 

Installation Instructions

Go to

 C:\WINDOWS\system32\drivers\etc

then open host file with notepad and  paste below lines..


127.0.0.1 anchorfree.net
127.0.0.1 rss2search.com
127.0.0.1 techbrowsing.com
127.0.0.1 box.anchorfree.net
127.0.0.1 www.mefeedia.com
127.0.0.3 www.anchorfree.net
127.0.0.2 www.mefeedia.com


then save and close notepad.. thats it.. :)



For more cool & Latest softwares Visit!


. Enjoy! ;)

----------------------------------



Tuesday 1 July 2014

C Program to print Fibonacci series

#include<stdio.h>
int main(){
    int k,r;
    long int i=0,j=1,f;

    //Taking maximum numbers form user
    printf("Enter the number range:");
    scanf("%d",&r);

    printf("FIBONACCI SERIES: ");
    printf("%ld %ld",i,j); //printing firts two values.

    for(k=2;k<r;k++){
         f=i+j;
         i=j;
         j=f;
         printf(" %ld",j);
    }
  
    return 0;
}

To swap two number without using third variable?

#include<stdio.h>

int main(){

    int a=5,b=10;

    //process one
    a=b+a;
    b=a-b;
    a=a-b;
    printf("a= %d  b=  %d",a,b);

    //process two
    a=5;b=10;
    a=a+b-(b=a);
    printf("\na= %d  b=  %d",a,b);

    //process three
    a=5;b=10;
    a=a^b;
    b=a^b;
    a=b^a;
    printf("\na= %d  b=  %d",a,b);

    //process four
    a=5;b=10;
    a=b-~a-1;
    b=a+~b+1;
    a=a+~b+1;
    printf("\na= %d  b=  %d",a,b);

    //process five
    a=5,b=10;
    a=b+a,b=a-b,a=a-b;
    printf("\na= %d  b=  %d",a,b);

    return 0;

Compare two strings without using string functions

#include<stdio.h>

int stringCompare(char[],char[]);
int main(){

    char str1[100],str2[100];
    int compare;

    printf("Enter first string: ");
    scanf("%s",str1);

    printf("Enter second string: ");
    scanf("%s",str2);

    compare = stringCompare(str1,str2);

    if(compare == 1)
         printf("Both strings are equal.");
    else
         printf("Both strings are not equal");
 
    return 0;
}

int stringCompare(char str1[],char str2[]){
    int i=0,flag=0;
   
    while(str1[i]!='\0' && str2[i]!='\0'){
         if(str1[i]!=str2[i]){
             flag=1;
             break;
         }
         i++;
    }

    if (flag==0 && str1[i]=='\0' && str2[i]=='\0')
         return 1;
    else
         return 0;

}

Friday 2 May 2014

free download internet download manger with crack v6.21. (Idm)

INSTRUCTIONS:

1. Install IDM v6.21
2. Make sure to exit IDM v6.21  from icon tray.
3. Copy IDMan.exe to File Location (C:\Program Files\Internet Download Manager) & replace with the original file.
4. Open RegKey
4. Enjoy :)

FOR DOWNLOAD CLICK HERE  :)


Sunday 27 April 2014

WAP to find whether it is leap year or not?

#include <stdio.h>
void main()
{
  int year;

  printf("Enter a year to check if it is a leap year\n");
  scanf("%d", &year);

   if ( (year%4 == 0)  ||(year%100==0) && (year%400==0))
   {
       printf("leap year");
   }
  else
  printf("not leap ");
  getch();
  }

Wednesday 19 March 2014

AMD graphic code 43 error?


Nowdays the laptop doesnot take the drivers normally when we boot/format the computer with windows 7 or windows 8.AMD graphice code 43 is error is due to this problem.The driver is not installed properly or driver is out of date.You can download the driver from the different site but I suggest to download from the geinue sites like if you laptop is of Hp gp to hp.com and download the drivers.
After downloading the drivers
1st install intel driver and then install amd driver. Now restart your computer.

Friday 7 March 2014

write a program to add two matrix using array??

#include<stdio.h>
#include<conio.h>
main()
{
int x[3][3],y[3][3],z[3][3],i,j,k;

printf("enter the first matrix");
for(i=0;i<=2;i++)
{
for(j=0;j<=2;j++)
scanf("%d",&x[i][j]);
}
printf("enter the second matrix");
for(i=0;i<=2;i++)
{
for(j=0;j<=2;j++)
scanf("%d",&y[i][j]);
}
for(i=0;i<=2;i++)
{
for(j=0;j<=2;j++)
z[i][j]=x[i][j]+y[i][j];
}
printf("the matrix addition is");
for(i=0;i<=2;i++)
{
for(j=0;j<=2;j++)
printf("%d\t",z[i][j]);
printf("\n");
}
getch();
}


Thursday 6 February 2014

how to run backtrack on android????


1.download complex linux, busybox, vnc android ,terminal emulator from play store
2.download bt5 image .
3.now open busybox and install it.
4.open complete linux -> click on launch ->setting ->add the backtrack image ->launch it.
5. now choose vnc server ->yes and set the resoution and note the LOCALHOST NO.
6.Open vnc and enter
name: backtrack
pass:backtrac
address:127.0.0.1
port:590 and localhost num ie 0,1,2...
now press connect.




Thursday 23 January 2014

/* WAP to find Factorial of a number using recursive function */

/* Factorial of a number using recursive function */

#include<stdio.h>
#include<conio.h>
int fact(int);
void main()
{
    int num;

    printf("Enter A Number:");
    scanf("%d",&num);

    printf("\n%d!=%d",num,fact(num));

    getch();
}

fact(int num)
{
    if(num<1)
    {
        return 1;
    }
    else
    {
        return (num*fact(num-1));
    }
}

/*WAP to find Factorial of a number using for loop */

/* Factorial of a number using for loop */

#include<stdio.h>
#include<conio.h>
void main()
{
    int num,i,fact=1;

    printf("Enter a Number:");
    scanf("%d",&num);

    for(i=1;i<=num;i++)
    {
        fact=fact*i;
    }

    printf("%d!=%d",num,fact);
}

/* WAP to Matrix subtraction */

/* Matrix subtraction */

#include<stdio.h>
#include<conio.h>
void main()
{
    int mat1[3][3],mat2[3][3],sub[3][3],i,j;

    printf("Enter the elements of  first matrix:\n");
    for(i=0;i<=2;i++)
    {
        for(j=0;j<=2;j++)
        {
            scanf("%d",&mat1[i][j]);
        }
    }

    printf("Enter the elements of  second matrix:\n");
    for(i=0;i<=2;i++)
    {
        for(j=0;j<=2;j++)
        {
            scanf("%d",&mat2[i][j]);
        }
    }

    for(i=0;i<=2;i++)
    {
        for(j=0;j<=2;j++)
        {
            sub[i][j]=mat1[i][j]-mat2[i][j];
        }
    }

    printf("The Sum Of Matrices Is:\n");
    for(i=0;i<=2;i++)
    {
        for(j=0;j<=2;j++)
        {
            printf("\t%d",sub[i][j]);
        }
        printf("\n");
    }
}

* WAP to concate strings */

/* WAP to concate strings */

#include<stdio.h>
#include<conio.h>
void main()
{
    char str1[100],str2[100],str[100];
    int i=0,j=0;

    printf("Enter First String:");
    gets(str1);

    printf("Entre Second String:");
    gets(str2);

    while(str1[i]!='\0')
    {
        str[j]=str1[i];
        i++;j++;
    }

    i=0;
    while(str[i]!='\0')
    {
        str[j]=str2[i];
        i++;j++;
    }

    printf("The Concate Of Entered Strings Is:");
    puts(str);

    getch();

}

/* WAP to convert the given character into uppercase if it is in lowercase and viceversa */

/* WAP to convert the given character into uppercase if it is in lowercase and viceversa */

#include<stdio.h>
#include<conio.h>
void main()
{
    char ch;

    printf("Enter a character:");
    scanf("%c",&ch);

    if(ch>='a' && ch<='z')
        printf("The uppercase character of %c is %c",ch,ch-32);
    else
        printf("The lowercase character of %c is %c",ch,ch+32);

    getch();
}

/* WAP to find the ASCII value of given character */

/* WAP to find the ASCII value of given character */

#include<stdio.h>
#include<conio.h>
void main()
{
    char ch;

    printf("Enter a character:");
    scanf("%c",&ch);

    printf("The ASCII value of %c is %d",ch,ch);

    getch();
}

/* WAP to arrange 5 given numbers in ascending order */

/* WAP to arrange 5 given numbers in ascending order */

#include<stdio.h>
#include<conio.h>
void main()
{
    int num[5],i,j,temp;

    printf("Enter 5 Numbers:");
    for(i=0;i<=4;i++)
    {
        scanf("%d",&num[i]);
    }

    for(i=0;i<=4;i++)
    {
        for(j=i+1;j<=4;j++)
        {
            if(num[i]>num[j])
            {
                temp=num[i];
                num[i]=num[j];
                num[j]=temp;
            }
        }
    }

    printf("Ascending order:");
    for(i=0;i<=4;i++)
    {
        printf("\n%d",num[i]);
    }

    getch();
}

,

/* WAP to Print the age of person in days */

/* WAP to Print the age of person in days  */

#include<stdio.h>
#include<conio.h>
main()
{
    int age,days;
    printf("Enter your age:");
    scanf("%d",&age);
    days=age*365;
    printf("You are %d days old.\n",days);
    getch();
}

Monday 20 January 2014

,

Write a program to read a number and to test whether it is an Armstrong number or not?

#include<stdio.h>
#include<conio.h>
void main()
{
    int num,temp,rem,sum=0;

    printf("Enter a number:");
    scanf("%d",&num);
    temp=num;

    while(temp!=0)
    {
        rem=temp%10;
        sum=sum+(rem*rem*rem);
        temp=temp/10;
    }

    if(sum==num)
        printf("\n%d is an Armstrong Number.",num);
    else
        printf("\n%d is not an Armstrong Number.",num);

    getch();
}

Friday 17 January 2014

Write a program to convert decimal to binary??

#include<stdio.h>
#include<conio.h>
void main()
{
    int dec,temp,bin[100],i=1,j;

    printf("Enter A Decimal Number:");
    scanf("%d",&dec);

    temp=dec;

    while(temp!=0)
    {
        bin[i++]=temp%2;
        temp=temp/2;
    }

    printf("The Equivalent Binary Number Of %d is ",dec);

    for(j=i-1;j>0;j--)
    {
        printf("%d",bin[j]);
    }

    getch();
}

Write a program to convert binary to deimal?


#include<stdio.h>
#include<conio.h>
void main()
{
    int bin,dec=0,temp,rem,j=1;

    printf("Enter Any Binary Number:");
    scanf("%d",&bin);

    temp=bin;

    while(temp!=0)
    {
        rem=temp%10;
        dec=dec+rem*j;
        j=j*2;
        temp=temp/10;
    }

    printf("The Equivalent Decimal Number Of %d is %d",bin,dec);
}

Thursday 16 January 2014

, ,

ASPHALT 8 download it for free.

Android HD racing game ASPHALT download it for free.

Asphalt 8 is one of the best HD android game. The graphic of asphalt 8 is amazing. You can now Perform barrel rolls and wild 360º jumps.In this game there are 8 seasons & 180 events in Career mode and more.

Minimum System Requirements of ASPHALT 8 ARE
1.2 GHZ cpu
512 MB of RAM
Adreno 203 GPU or better
1.5 gb free space


GOOGLE PLAY LINK :https://play.google.com/store/apps/details?id=com.gameloft.android.ANMP.GloftA8HM&hl=en
IF YOU CANT DOWNLOAD IT FROM GOOGLE PLAY HERE ARE OTHER LINKS:
FOR DATA AND APK CLICK HERE 





Wednesday 15 January 2014

/* Simple Program Displaying The Use Of Basic Mathematical Operators */

/* Simple Program Displaying The Use Of Basic Mathematical Operators */
#include<stdio.h>
#include<conio.h>
void main()
{
    int num1,num2,add,sub,multi,div,modulo_div;
    printf("Enter Two Numbers:");
    scanf("%d%d",&num1,&num2);
    add=num1+num2;
    sub=num1-num2;
    multi=num1*num2;
    div=num1/num2;
    modulo_div=num1%num2;
    printf("\nAddition=%d\nSubtraction=%d\nMultiplication=%d\nDivision=%d\nModulo Division=%d",add,sub,multi,div,modulo_div);
    getch();
}

OUTPUT


Example of printf and scanf.. (easy)

#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c;
printf("Example of printf and scanf\n");
printf("enter the value of a and b");
scanf("%d%d",&a,&b);
c=a+b;
printf("the sum is:%d",c);
getch();
}

Here printf prints the phrase Example of printf and scanf and enter the value of a and b. "\n" prints the phrase in a newline. Scanf stores the value of "a" and "b" entered by the user. "+" sign does the addition and store the value in c. Again printf prints the value of c.

Tuesday 14 January 2014

, ,

use of printf

printf("lets start\n");
This is the printf command and it prints text on the screen. The data that is to be printed is put inside brackets. You will also notice that the words are inside inverted commas because they are what is called a string. Each letter is called a character and a series of characters that is grouped together is called a string. Strings must always be put between inverted commas. The \n is called an escape sequence and represents a newline character and is used because when you press ENTER it doesn't insert a new line character but instead takes you onto the next line in the text editor. You have to put a semi-colon after every command to show that it is the end of the command.

C programming

C programming was  developed by Dennis Ritchie at bell laboartories  USA in 1972. C is used to prepare system software and application.
lets start with C basic knowledge.......Any instruction that starts with # (pre-processor operator) take up a whole line,and finish at the end of line which line is called pre-processor directive. Files ending with .h are what known as header files, provided with each compiler and cover a range of area such as string handling,mathematical conversions,printing and reading of variables etc. Stdio.h means "standard in/out" which means standard in/out which means standard way of getting data to and form input and output devices. In our case we whish to take in data from keyboard (a standard input devices) and put data on to the screen or console (a standard output device.)Conio.h means console in/out which means way of getting data to and from the console device(which uses the keyboard and screen)> Here stdio.h is more generalized and can be used to read/write data from to a disk file permanent storage of data, write data out out to a printing device ,and so on. The conio.h library just contains the deal specially with the console (keyword and black pop-up screen). Printf, scanf etc functions are defined in stdio.h header file whereas getcg(),clrscr() functions are defined in conio.h header file.
Another use of pre-processor operator is to define the variable globally like #define pi 3.14This global variable defination always comes before main function where a variable PI is assigned by value of 3.14
Any C program alwas starts with at most one main() function.void main(){ statements;}Here,void is return type of the function definition which returns nothing. `{` indicates the starts of main function and `}`indicates the end of main function.

Monday 13 January 2014

Free Net Connection In Airtel With out Gprs Activation

Tips To Get the Free Net connection In Airtel Live:-


 

Hi Friends everyone want to have the internet connection for free, but practically it wont possible in the real life because it was not provided by the server's like Airtel,Aircel,Vodafone. Here is the technique that was revealed here. Here this was discussed that the free internet connection without GPRS activation. But this was work only in the java phone's only ...

As soon as this was provided to the Android Phones.. 

This is the Nice trick To get the free Airtel GPRS:-

How To Do:-


  • First of all you need to activate the GPRS connection in the Handset or mobile phone..
                                          (Otherwise)                    
  • Then Call to the 121 and activate the GPRS connection.
  • If you Got GPRS connection then Follow the steps below.
  • Tea-Shark Web Browser which gives the free net Connection.
     

  • It also works in the Java Handset.
     

  • To Download this Click Here.
  •  This Trick is Most probably Work in all type of Handsets
  • Wanna Play game with Google Images Then Look at the last of this article.

Important Note :-


Viewers must be Check your Balance After few minutes of usage..

This software is only available in this site only .....

   
     This is an Excellent Technique Found in Airtel

     Check This out:- 

    Tips To Invite All Friend For Page likes......