Monday, 28 July 2014

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

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)

Tuesday, 1 July 2014

C Program to print Fibonacci series

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
To swap two number without using third variable?

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= 
Compare two strings without using string functions

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
Pages (26)1234567 >