Saturday, March 23, 2019

WRITE A PROGRAM FOR SWAPPING FOR TWO VALUES


BACHELOR OF COMPUTER APPLICATION (B.C.A.) FIRST SEMESTER

Here you will get simple C program 
WRITE A PROGRAM FOR SWAPPING FOR TWO VALUES
IT IS THE SMALLEST LOGIC USED FOR CODING OF THIS PROGRAM.
IN WHICH YOU CAN CREATE OWN VARIABLES AND FUNCTIONS.
User will input two numbers,
then their SWAPPING will be calculated and
finally it will be printed on screen.

The program coding is given below.
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,t;
clrscr();
printf("Enter Two Value's = ");
scanf("%d %d",&a,&b);
t=a;
a=b;
b=t;
printf("After Swapping is = %d %d",a,b);
getch();
}
Output will be given after you compile it.

No comments:

Post a Comment