PROGRAM TO SWAP TWO NUMBERS BY CALL BY VALUE
//PROGRAM TO SWAP TWO NUMBERS BY CALL BY VALUE// #include<stdio.h> #include<conio.h> void swap(int,int); void main() { int a,b; clrscr(); printf(“Enter the value of first number: “); scanf(“%d”,&a); printf(“Enter the value …