DEV/DEV1.1/TP09/echange.c

11 lines
111 B
C
Raw Normal View History

2022-11-15 11:27:45 +01:00
#include <stdio.h>
#include <stdlib.h>
void echange(int* a,int* b){
int temp;
temp=*a;
*a=*b;
*b=temp;
}