DEV/DEV1.1/TP09/echange.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;
}