55. Write a C program to swap the two values using pointers.
#include<stdio.h> ( this applies in the given code )
#include
void swap(int *,int *);
int main(void)
{
int i=15,j=20;
printf(“\n Before Swapping i = %d j = %d”,i,j);
swap(&i,&j);
printf(“\n After Swapping i = %d j = %d”,i,j);
return 0;
}