plz answer....A program that takes 3 variables e.g a,b,c in
as seperate parameters and rotates the values stored so
that value goes a to b, b to c and c to a .
Answers were Sorted based on User's Feedback
Answer / venkatesh sabinkar
void main()
{
int a,b,c,t;
clrscr();
printf("enter the values of a, b and c");
scanf("%d%d%d",&a,&b,&c);
t=a;
a=b;
b=c;
c=t;
printf("a=%d,b=%d,c=%d",a,b,c);
getch();
}
| Is This Answer Correct ? | 9 Yes | 7 No |
Answer / swapnil chhajer
#include<stdio.h>
int main()
{
int a,b,c;
printf("Enter three numbers : ");
scanf("%d %d %d",&a,&b,&c);
a = a+b+c;
b = a-b-c;
c = a-b-c;
a = a-b-c;
printf("a : %d b: %d c: %d",a,b,c);
fflush(stdin);
getchar();
}
| Is This Answer Correct ? | 6 Yes | 6 No |
Answer / ruchi
#include<stdio.h>
#include<conio.h>
int main()
{
int a,b,c,d;
printf("\nEnter the three numbers ");
scanf("%d %d %d",&a,&b,&c);
a=a+b;
b=a-b;
d=c;
c=a-b;
a=d;
printf("\nNow the values are ");
printf("%d %d %d",a,b,c);
getch();
}
| Is This Answer Correct ? | 1 Yes | 2 No |
pierrot's divisor program using c or c++ code
Give basis knowledge of web designing ...
Write a program to find the biggest number of three numbers in c?
Is void a keyword in c?
What is string function in c?
here is a link to download Let_Us_C_-_Yashwant_Kanetkar
How are strings stored in c?
find the output of the following program main() { int x=5, *p; p=&x; printf("%d",++*p); }
write a program to delete an item from a particular location of an linear array?
Tell me about low level programming languages.
Why can’t we compare structures?
declare afunction pointer to int printf(char *)?