UrbanPro
true

Learn C Language from the Best Tutors

  • Affordable fees
  • 1-1 or Group class
  • Flexible Timings
  • Verified Tutors

Search in

C-Program Swapping Contents Of Variables Using Function [Call By Reference Method]

Salim Ahmed Ansari
08/07/2017 0 0

//Header Files [Standard Library]

#include
#include

// User defined functions swap with 2 pointer variables passed as an argument list

void swap(int*i,int*j)
{

// Local variable temp
 int temp;
 // swapping contents using third variable temp
 temp=*i;
 *i=*j;
 *j=temp;

}

//Main function[Execution starts from main method]
void main()
{
 int a,b;

//Function for clearing screen
 clrscr();

//Taking input from user
 printf("Enter value for a:");
 scanf("%d",&a);
 printf("Enter value for b:");
 scanf("%d",&b);

//Printing on console

 printf("**Before swapping**\n");
 printf("value of a=%d\t",a);
 printf("value of b=%d\n",b);
 swap(&a,&b);

 printf("**After swapping**\n");
 printf("value of a=%d\t",a);
 printf("value of b=%d",b);

// Function for holding screen on console 

getch();

}

0 Dislike
Follow 0

Please Enter a comment

Submit

Other Lessons for You

Upcasting and Downcasting
Converting a derived-class reference or pointer to a base-class reference or pointer is called upcasting. It is always allowed for public inheritance without the need for an explicit type cast. The downcasting,...

Short Answer Questions For Chapter-3 Computer Science Class-XI-CBSE
Short Answer Questions For Chapter-3 Computer Science Class-XI-CBSE What is Microprocessor and its use? Ans: A microprocessor is a semiconductor chip and used to processes all the information in...

Everything about printf in C language
What is printf and from where it comes from in C code.? You must have used printf so many times in your Car programs but do you really know everything about printf? Let's see. What is the full form...

How to write shared library program using C Programming?
Library Name : hellofilename : hello.c#include void Hello(){ printf("Hello World .. How are you 1\n");}======================================Header File:hello.h#ifndef __HELLO_H#define __HELLO_Hvoid Hello(void);#endif===============================Application...

How To Setup development Environment Of Java?
After installation of JAVA, we need to setup 2 environment variables. First one is JAVA_HOME and second is Path. Below steps to set up Java environment to compile & execute Java programs from command...

Looking for C Language Classes?

Learn from Best Tutors on UrbanPro.

Are you a Tutor or Training Institute?

Join UrbanPro Today to find students near you
X

Looking for C Language Classes?

The best tutors for C Language Classes are on UrbanPro

  • Select the best Tutor
  • Book & Attend a Free Demo
  • Pay and start Learning

Learn C Language with the Best Tutors

The best Tutors for C Language Classes are on UrbanPro

This website uses cookies

We use cookies to improve user experience. Choose what cookies you allow us to use. You can read more about our Cookie Policy in our Privacy Policy

Accept All
Decline All

UrbanPro.com is India's largest network of most trusted tutors and institutes. Over 55 lakh students rely on UrbanPro.com, to fulfill their learning requirements across 1,000+ categories. Using UrbanPro.com, parents, and students can compare multiple Tutors and Institutes and choose the one that best suits their requirements. More than 7.5 lakh verified Tutors and Institutes are helping millions of students every day and growing their tutoring business on UrbanPro.com. Whether you are looking for a tutor to learn mathematics, a German language trainer to brush up your German language skills or an institute to upgrade your IT skills, we have got the best selection of Tutors and Training Institutes for you. Read more