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;

}