Transférer les fichiers vers 'TP2'

This commit is contained in:
Jose-maria FULLANA 2021-10-06 20:19:41 +02:00
parent e8548a6d7e
commit ec82c21075
1 changed files with 19 additions and 0 deletions

19
TP2/exo2.c Normal file
View File

@ -0,0 +1,19 @@
#include <stdio.h>
int main () {
int a = 5, b=10;
/********************************/
/* avec une variable auxiliaire */
/********************************/
int aux=a;
a=b;
b=aux;
/********************************/
/* sans variable auxiliaire */
/********************************/
a = 5, b=10;
a=a+b;
b=a-b;
a=a-b;
return 1;
}