debut TP16

This commit is contained in:
2023-11-07 17:30:28 +01:00
parent 3d18e26fd9
commit 940fdfe265
12 changed files with 129 additions and 3 deletions

20
DEV1.1/TP16/etape.c Normal file
View File

@@ -0,0 +1,20 @@
#include <stdlib.h>
#include <stdio.h>
int main(void) {
int a = 1, b = 2, c = 3;
int *p, *q;
p=&a;
q=&c;
*p=(*q)++;
p=q;
q=&b;
*p-=*q;
++*q;
*p*=*q;
a=++*q**p;
p=&a;
*q=*p/(*q);
return EXIT_SUCCESS;
}