answersLogoWhite

0

include

#include

void main()

{

int x, y, temp;

printf("Enter the value of x and y ");

scanf("d", &x, &y);

printf("Before Swapping x = %d\ny = %d\n",x,y);

temp = x;

x = y;

y = temp;

printf("After Swapping x = %d\ny = %d\n",x,y);

getch();

return 0;

}

Do you happen to know what a flow-chart is?

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What is the advantage of swapping two variables without using 3 variable?

Nothing. Never do that.


What is meant by swapping of variables?

It means that you swap the values of that variables EX: -==- before swapping :- Variable1 = 5; variable2 = 10; after swapping :- Variable1 = 10; variable2 = 5;


Why is the interactive Visual Logic flowchart program more useful than a manually drawn flowchart?

A manual flowchart is static. The advantage of an interactive Visual Logic flowchart is that it allows users to input values for various variables at runtime. When the flowchart is finished, users can then run the program behind the chart.


Define flowchart and draw flowchart for GCD of two numbers?

pictorial representation of a program is called a flowchart


How do you design a flowchart to input two numbers and swap their values?

To design a flowchart for inputting two numbers and swapping their values, start with a terminal symbol indicating the start. Next, use input/output symbols to prompt the user to enter the two numbers, labeling them as A and B. Then, employ a process symbol to perform the swap, which can be done using a temporary variable, such as: temp = A; A = B; B = temp. Finally, use another input/output symbol to display the swapped values of A and B, and end the flowchart with a terminal symbol.


Flowchart to add two numbers?

ghjukkghhgyg


What is the Flowchart for multiplication of two matrices?

[object Object]


What is the meaning of 'swapping' in computer architecture?

Swapping means to swap the values of two addresses in main memory.


What is structural flowchart?

it's like a family tree, yourself, then flows to two parents, then flows to their 4 parents, and on and on. in otherwords, a flowchart


What is best definataion of variable in flowchart?

In a flowchart, a variable is typically represented as a symbol that denotes a value or data element that can change during the execution of a process. It serves as a placeholder for information that can be manipulated or referenced throughout the flow of the algorithm. Variables are often depicted using parallelograms or rectangles, depending on the flowchart conventions, to indicate their role in the process.


What are the two types of flowchart?

low level and high level


How do you write a c program to swap the values of two variables in unix?

#include<stdio.h> void main() { int a=2,b=4; printf("Program for swapping two numbers "); printf("Numbers before swapping"); printf("a=%d and b=%d",a,b); a=((a+b)-(b=a)); printf("Numbers after swapping"); printf("a=%d and b=%d",a,b); getch(); }