C/C++: Exemple d’utilisation d’un pointeur sur le type char comme paramètre d’une fonction August 15, 2012 Author: #include void afficher(char *str) { while(*str) printf("%c", *str++); } int main( Categories: Uncategorized