#include #include static char *ini_car(void); static void f_car(void); int main(void) { char *p; p = ini_car(); printf("Avant le second appel <%c>\n", *p); f_car(); printf("Après le second appel <%c>\n", *p); return EXIT_SUCCESS; } static char * ini_car(void) { char c; c = '@'; return(&c); } static void f_car(void) { char car; car = '#'; }