#include<stdio.h>
void main()
{
int a,b,t;
printf("enter the values of two varaible");
scanf("%d%d",&a,&b);
t=a;
a=b;
b=t;
printf("the exchanged values are",b,a);
}
Chat with our AI personalities
Swapping variables is accomplished using a temporary variable. For example, if A and B are integers, you can swap their values using the following code:
// Initialize A and B
int A = 5;
int B = 7;
// Create our temporary variable
int temp;
// Perform the swap
temp = A;
A = B;
B = temp;
// Print the results
cout << "A: " << A << " B: " << B << endl;
/*mycfiles.wordpress.com
Exchange of value of 2 variable with temporary variable*/
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,temp;
clrscr();
printf("\nEnter the value for a & b");
scanf("d",&a,&b);
temp=a;
a=b;
b=temp;
printf("\na=%d",a);
printf("\nb=%d",b);
getch();
}
#include<stdio.h> #include<conio.h> void main() { int a,b,c; printf("Enter the value of A"); scanf("%d",&a); printf("Enter the value of B"); scanf("%d",&b); c=a; a=b; b=c; printf("The value of A is %d",a); printf("The value of B is %d",b); getch(); }
temp = x; x = y; y = temp;
Write a program using recursion which should take two values and display 1st value raised to the power of second value.
Variables are items, which change their values during the execution of a program. Constants do not change the value during the execution of a program.
void main() { //variable declaration int a; int b; printf("\n Enter the first value"); scanf("%d",&a); printf("\n Enter the second value"); scanf("%d",&b); a=a+b; b=a-b; a=a-b; printf("\n After swap the value"); printf("\n value of A=%d",a); printf("\n value of A=%d",b); getch(); }
Variables are storage areas that hold data that can vary during the execution of a program. A symbolic name is the name given to any entity in a program, including variables, constants, functions, procedures and various other stuff.