15 Novembre
This commit is contained in:
17
DEV1.1/TP11:Debogueur/etapes.c
Normal file
17
DEV1.1/TP11:Debogueur/etapes.c
Normal file
@@ -0,0 +1,17 @@
|
||||
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 0;
|
||||
}
|
||||
Reference in New Issue
Block a user