A program to swap the content of two integer variable using call by reference. Codes /*A program to swap the content of two integer variable using call by reference*/ /*Programed by Jitendra Kr Yadav 10116 2Apr,2011*/ #include<stdio.h> #include<conio.h> void swap(int*, int *); main() { inta,b; printf(“Enter the value of a and b:\n”); scanf(“%d%d”,&a,&b); […]