Afficher les adresses d’un tableau de caractère December 17, 2011 Author: user {filelink=13370} #include int main () { char * tab1 = "abc"; char tab2[] = "def"; printf(" %16lu n", tab1, tab1); printf(" %16lu ", tab2, tab2); return 0; } Categories: Uncategorized