Online Courses
Free Tutorials  Go to Your University  Placement Preparation 
0 like 0 dislike
3.3k views
in GTU B.E. (CSE-I-Sem) Programming For Problem Solving Lab by Goeduhub's Expert (7.1k points)

Write a function Exchange to interchange the values of two variables, say x and y using C programming

Goeduhub's Top Online Courses @Udemy

For Indian Students- INR 360/- || For International Students- $9.99/-

S.No.

Course Name

 Coupon

1.

Tensorflow 2 & Keras:Deep Learning & Artificial Intelligence || Labeled as Highest Rated Course by Udemy

Apply Coupon

2.

Complete Machine Learning & Data Science with Python| ML A-Z Apply Coupon

3.

Complete Python Programming from scratch | Python Projects Apply Coupon
    More Courses

1 Answer

0 like 0 dislike
by Goeduhub's Expert (7.1k points)
edited by
 
Best answer

Exchange of Two Numbers Using Function

In this program we are going to implement exchange of two numbers using function in C programming.

To learn basics of function in C programming Click Here.

Example :

#include<stdio.h>
#include<conio.h>

//Declaration of exchange function
void exchange(int x,int y);

void main()
{
int x,y;
clrscr();

//Taking two numbers from user
printf("\nEnter two numbers:");
scanf("%d%d",&x,&y);
printf("\nBefore Exchange x = %d and y = %d",x,y);

//calling exchange function
exchange(x,y);
getch();
}
//Definition of exchange function
void exchange(int x,int y)
{
int z;
z=x;
x=y;
y=z;
printf("\nAfter Exchange x = %d and y = %d",x,y);
}

Output :

Output of above program showing swapping of numbers


For More GTU C Programming Lab Experiments Click Here

3.3k questions

7.1k answers

394 comments

4.6k users

Related questions

 Goeduhub:

About Us | Contact Us || Terms & Conditions | Privacy Policy || Youtube Channel || Telegram Channel © goeduhub.com Social::   |  | 
...