Powered By Blogger

Monday, May 4, 2009

C Programming

#include
#include
void main()
{
int x,y,z,a;
clrscr();
printf(" Enter The value of X:");
scanf("%d",&x);
printf(" Enter The value of Y:");
scanf("%d",&y);
printf(" Enter The value of Z:");
scanf("%d",&z);
a=x;
x=y;
y=z;
z=a;
printf("\n The value of X=%d",x);
printf("\n The value of Y=%d",y);
printf("\n The value of Z=%d",z);
getch();
}

0 comments:

About This Blog

This is an important blog about updated news about computer science and technology.

Blog Archive

Visitors

  © Free Blogger Templates Blogger Theme II by Ourblogtemplates.com 2008

Back to TOP