//pointer2 #include<stdio.h> void main() { int *p[10]; //it is an array of 10 pointers that is there are 10 pointer …
C Program to swap two numbers showing call by reference.
//Application of Pointer variable #include<stdio.h> void swap(int *p,int *q); void main() { int a,b; printf(“enter the value of two variable …
