" /> " />

How to browse Blocked Websites(in colleges,schools etc)

Posted by admin | Posted in Internet Tricks | Posted on 21-11-2011

0

IF you are not able to visit your favorite websites in your school or college or any place where some sites are blocked?
HERE IS A TRICKS FOR THAT

Below are the list of various sites from which you can surf the blocked websites !

  • http://kproxy.com
  • http://backfox.com
  • http://atunnel.com
  • http://calculatepie.com
  • http://www.stupidcensorship.com
  • http://www.vmathpie.com
  • http://www.xroxee.com
  • http://mathtunnel.com
  • http://www.pagemod.com  ”

Program For Magic Matrix

Posted by admin | Posted in Progarmming | Posted on 26-07-2011

0

#include<stdio.h>
main()
{
int i,j,d=1,n,a[10][10],k;

printf(“enter the limit\n”);
scanf(“%d”,&n);
for(i=0;i<n;i++)
for(j=0;j<n;j++)
a[i][j]=0;

printf(“Magic Matrix is:\n”);
i=0;
j=n/2;
while(d<=(n*n))
{
a[i][j]=d;
d++;
i–;
j++;
if(i<0)
i=i+n;
if(j==n)
j=j-n;

if(a[i][j]!=0)
{
i+=2;
j–;
if(i>=n)
i=i-n;
if(j<0)
j=j+n;
}
}
for(i=0;i<n;i++)
{
for(j=0;j<n;j++)
{
printf(“%d\t”,a[i][j]);
}
printf(“\n”);
if(n==9)
{
for(k=0;k<n-2;k++)
printf(“———-”);
printf(“\n”);
}
if(n==3)
{
for(k=0;k<n;k++)
printf(“——”);
printf(“\n”);

}
if(n==7)
{
for(k=0;k<n-1;k++)
printf(“———”);
printf(“\n”);

}

}

}

Change Your Start Button Name

Posted by admin | Posted in technical | Posted on 19-04-2011

6

Just Click To Download This And See How Your Name Look Like On The Start Button.

Make Your Windows Genuine

Posted by admin | Posted in technical | Posted on 19-04-2011

0

Just  Click below  To  Download  This  Software  To  Make  Your  Windows 7 Genuine.

C Tutorial

Posted by admin | Posted in Progarmming | Posted on 18-04-2011

1

You can learn easily….the C programming with the help of this tutorial.

Program to check whether number is even or odd using function.

Posted by admin | Posted in Progarmming | Posted on 14-03-2011

1

#include<stdio.h>
int iseven(int);
main()
{
int n,a[100],i,x;
printf(“ENTER LIMIT\n”);
scanf(“%d”,&n);
printf(“ENTER AN ARRAY ELEMENT\n”);
for(i=0;i<n;i++)
{
scanf(“%d”,&a[i]);
}
for(i=0;i<n;i++)
{
if(iseven (a[i])==1)
printf(“\tEVEN=%d\n”,a[i]);
else
printf(“\tODD=%d\n”,a[i]);
}
}
int iseven (int x)
{
if (x%2==0)
return 1;
else
return 0;
}

//Program to check whether number is even or odd using function.

#include<stdio.h>int iseven(int);main(){ int n,a[100],i,x; printf(“ENTER LIMIT\n”); scanf(“%d”,&n); printf(“ENTER AN ARRAY ELEMENT\n”); for(i=0;i<n;i++) { scanf(“%d”,&a[i]); } for(i=0;i<n;i++) { if(iseven (a[i])==1) printf(“\tEVEN=%d\n”,a[i]); else printf(“\tODD=%d\n”,a[i]); }}int iseven (int x){ if (x%2==0) return 1; else return 0;}

Program to perform following mathematical operations.

Posted by admin | Posted in Progarmming | Posted on 13-03-2011

0

#include<stdio.h>
#include<math.h>
main()
{
float x,y,ans;
int choice;
do
{
printf(“n\t MENU \n”);
printf(“\n\t 1.SINE”);
printf(“\n\t 2.COSINE”);
printf(“\n\t 3.TANGENT”);
printf(“\n\t 4.NATURAL LOGARITHM”);
printf(“\n\t 5.LOGARITHM TO THE BASE 10″);
printf(“\n\t 6.POWER(X RAISE TO Y”);
printf(“\n\t 7.EXPONENTIAL VALUE”);
printf(“\n\t 8.SQUARE ROOT”);
printf(“\n\t 9.EXIT \n”);
printf(“ENTER MENU CHOICE\n”);
scanf(“%d”,&choice);
printf(“ENTER THE VALUE FOR X\n”);
scanf(“% f”,&x);
switch(choice)
{
case 1:ans=sin(x);
printf(“\n SINE OF % f  IS % f \n”,x,ans);
break;
case 2:ans=cos(x);
printf(“COSINE OF  % f IS % f  \n”,x,ans);
break;
case 3:ans=sin(x)/cos(x);
printf(“TANGENT OF % f IS % f\n”,x,ans);
break;
case 4:ans=log(x);
printf(“LOGARITHM OF % f IS % f\n”,x,ans);
break;
case 5:ans=log10(x);
printf(“\n LOGARITHM TO THE BASE 10 OF % f IS % f\n”,x,ans);
break;
case 6 :printf(“ENTER THE VALUE OF Y\n”);
scanf(“%d”,&y);
ans= pow(x,y);
printf(“\n POWER OF X^y IS % f\n”,ans);
break;
case 7: ans=exp(x);
printf(“\n EXPONENTIAL VALUE OF % f IS % f\n”,x,ans);
break;
case 8: ans=sqrt(x);
printf(“\n SQUAREROOT OF  % f IS % f \n”,x,ans);
break;
}
}
while(choice!=9);
getch();
return;
}

Program to perform the following operations on two complex numbers.

Posted by admin | Posted in Progarmming | Posted on 13-03-2011

0

#include<stdio.h>
main()
{
int choice,r,i,r1,r2,r3,i1,i2,i3;
do
{
printf(“\n\t 1.ADD\n”);
printf(“\n\t 2.SUBTRACT\n”);
printf(“\n\t 3.MULTIPLY\n”);
printf(“\n\t 4.EXIT\n”);
printf(“\n\t ENTER UR CHOICE\n”);
scanf(“%d”,&choice);
printf(“\n\t ENTER 1ST COMPLEX NUMBER\n”);
scanf(“%d+%di”,&r1,&i1);
printf(“\n\t ENTER 2ND COMPLEX NUMBER\n”);
scanf(“%d+%di”,&r2,&i2);
switch(choice)
{
case 1: r3=r1+r2;
i3=i1+i2;
printf(“(%d+%d)+(%d+%d) is (%d+%d)”,r1,i1,r2,i2,r3,i3);
break;
case 2: r3=r1-r2;
i3=i1-i2;
printf(“(%d+%d)-(%d+%d) is (%d+%d)”,r1,i1,r2,i2,r3,i3);
break;
case 3: r3=r1*r2;
i3=i1*i2;
printf(“(%d+%d)*(%d+%d) is (%d+%d)”,r1,i1,r2,i2,r3,i3);
break;
}
}while(choice!=4);
}

Posted by admin | Posted in Progarmming | Posted on 13-03-2011

0

//Program to check whether the character is an alphabet or digit or punctuation symbol and if alphabet check if it is uppercase or lowercase and then change it.

#include<stdio.h>
main()
{
char ch;
int choice;
do
{
printf(“\n\t MENU \n”);
printf(“\n\t 1.CHECK ALPHABET”);
printf(“\n\t 2.CHECK DIGIT”);
printf(“\n\t 3.CHECK PUNCTUATION SYMBOL”);
printf(“\n\t 4.EXIT\n”);
printf(“ENTER MENU CHOICE\n”);
scanf(“%d”,&choice);
printf(“ENTER CHARACTER\n”);
scanf(“%c”,&ch);
ch=getchar();
switch(choice)
{
case 1:if(isalpha(ch))
{
if(islower(ch))
ch=toupper(ch);
else
ch=tolower(ch);
}
printf(“CONVERTED CHARACTER=%c”,ch);
break;
case 2:if(isdigit(ch))
printf(“CHARACTER IS DIGIT”);
else
printf(“CHARACTER IS NOT A DIGIT”);
break;
case 3:if(ispunct(ch))
printf(“CHARACTER IS A PUNCTUATION SYMBOL”);
else
printf(“CHARACTER IS NOT A PUNCTUATION SYMBOL”);
break;
}
}
while(choice!=4);
}

Program to display all perfect numbers below 500.

Posted by admin | Posted in Progarmming | Posted on 13-03-2011

0

#include<stdio.h>
#include<math.h>
main()
{
int i,p=i,sum=0,j,x,y;
printf(“Enter limits of perfect numbers\n”);
scanf(“%d%d”,&x,&y);
for(i=x;i<=y;i++)
{
p=i;
sum=0;
for(j=1;j<p;j++)
{
if(p%j==0)
sum+=j;
}
if(p==sum)
printf(“\nPerfect Numbers=%d\t\n\n”,p);
}
}


Powered by WP Symposium - Social Networking for WordPress v0.48.2