Programmation Avancée en C


volatile.c

00001 #include <stddef.h>
00002 
00003 int main() 
00004 {
00005     volatile int * pv;
00006     int *p = NULL;
00007     pv = p;
00008     p = pv;
00009     p = (int *) pv;
00010     return 0;
00011 }