Monday 28 July 2014

MODERN COMBAT 5 :BLACKOUT FREE DOWNLOAD (DATA+ APK)







INSTRUCTION TO INSTALL 
- Copy folder “com.gameloft.android.ANMP.GloftM5HM”
-Paste it into sdcard0/android/obb
-Install apk
Launch game( Internet connectivity required)

CLICK HERE TO DOWNLOAD

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;

}