Skip to main content
Search
Search This Blog
Adsense
CFETCH
Share
Get link
Facebook
X
Pinterest
Email
Other Apps
Labels
C Programs
July 08, 2013
A C Program to rotate the value of the variables.
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c,x,y,z;
clrscr();
printf("Enter value of a,b,c:");
scanf("%d %d %d",&a ,&b ,&c);
a=x;
b=y;
c=z;
x=c;
z=b;
y=a;
printf("value of a,b,c is:%d %d %d",a,b,c);
getch();
}
Comments
Popular Posts
January 17, 2014
C program to draw ellipse using Midpoint Ellipse Algorithm.
January 10, 2014
Draw a Line using Equation y=mx+c in C
Comments
Post a Comment