Tuesday 22 May 2012

HOW TO MAKE INTERNET FREE


BSNL TRICK TO GET 3G SPEED WITH 2G CARD
I think many of you are excited to know that how you can get the 3GB speed with 2G network SIM card and at the cost of 2G net vouchers. I thing you are thinking that how it is possible. Yes of course it is possible my friends. To get 3G net speed you need a BSNL 2G SIM card and a BSNL 3G Data Card. If you are having that’s good! You can continue to following steps. But the 3G networking coverage is required in your city or area.
STEPS:- Step1.Insert your Data Card to the computer as usually you do.
.Step2.Click on the Network menu. Under the network menu set the network selection from manual to auto to manual.
Step3. Then below the Networking Selection menu mode Selection menu is present. In mode Selection Menu set it to UMTS/HSPDA option. .
Step4.Click on apply button.
Then reconnect your BSNL Data Card. Now you can see the difference in previous browsing and downloading speeds and after browsing speeds. Your Net speeds are increased by up to 10x. if you are getting faster speed after this trick its great! Enjoy.
TRICK TO MAKE DOCOMO INTERNET FREE
These is a free proxy trick, though this
Trick enjoy unlimited browsing and
Download a ding with Docomo
Its so simple Go to setting and Create a web setting given below:
Homepage:
Proxy-10.124.94.007
Port-8080
APN- tata docomo.internet

TRICK TO MAKE VODAFONE INTERNET FREE

Instruction:
Just create a new Setting:-
Account name:freetrickz
APN:portalnmms
Proxy:10.10.1.100
Port:9401 or 8799


           



Monday 21 May 2012



Submit Site to Google
If you wish get high ranking in search engines. So you need to check our Link Building Services
WDPN dot Org


PROGRAM TO CALCULATE FACTORIAL OF INPUTTED NUMBER


#include<stdio.h>
#include<conio.h>
void main(){
int fact=1,i,n;
clrscr();
printf("enter the number");
scanf("%d",&n);
for(i=1;i<=n;i++)
{
fact=fact*i;
}
printf("factorial of the given number is %d",fact);
}

Output:-
enter the number4
factorial of the given number is 24


THE FOR STATEMENT PROGRAM TO GENERATE FIRST N TERMS OF FIBONACCI SERIES


#include<stdio.h>
#include<conio.h>
void main()
{  int n=0,i=3,f1,f2,f3;
clrscr();
printf("enter how many nos. u want to enter\n");
scanf("%d",&n);
f1=0;
f2=1;
 printf("%d%d",f1,f2);
 do
 {
  f3=f2+f1;
  f1=f2;
  f2=f3;
  i++;
  printf("%d",f3);
 }
  while(i<=n);
  }

Output:-
enter how many nos. u want to enter
6
011235

PROGRAM TO INPUT A NUMBER AND O/P NUMBER BY REVERSING THE DIGITS


#include<stdio.h>
#include<conio.h>
void main(){
int num,rem;
clrscr();
printf("enter the number");
scanf("%d",&num);
while(num>0){
rem=num%10;
num=num/10;
printf("%d",rem);
}
}

Output:-
enter the number1234
4321


PROGRAM TO GENARATE PRIME NUMBERS BETWEEN TWO GIVEN NUMBERS


#include<stdio.h>
#include<conio.h>
void main()
{ int num1,num2,i,flag;
printf("Enter 2 no.");
scanf("%d%d",&num1,&num2);
while(num1<=num2)
{
i=2;
while( i<num1)
{
  if(num1%i==0)
  {
  flag=0;
  break;
  }
  else
  {
  flag=1;
  }
  i++;
}
if(flag==1)
printf("%d",num1);
num1++;
}
}
Output
enter 2no.
1
10
357