Files
DEV/DEV1.1/TP16/etape.c

20 lines
231 B
C
Raw Permalink Normal View History

2023-11-07 17:30:28 +01:00
#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;
}