write a function of c
Answers
Answered by
1
- #include<stdio.h>
- // function prototype, also called function declaration.
- void swap(int *a, int *b);
- int main()
- {
- int m = 22, n = 44;
- // calling swap function by reference.
- printf("values before swap m = %d \n and n = %d",m,n);
Similar questions