11 lines
111 B
C
11 lines
111 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
|
|
void echange(int* a,int* b){
|
|
int temp;
|
|
temp=*a;
|
|
*a=*b;
|
|
*b=temp;
|
|
}
|