J'ai un doute dans mon programme
#include<stdio.h>
int myFunc(char **);
main()
{
char *a[2]={"Do","While"};
myFunc(a);
}
int myFunc(char **P)
{
/* Here I want to print the strings passed but I'm unable to
print the strings I just tried the below statement which
printed just the first letter which is 'D'*/
printf("%c",**P);
}
quand j'ai essayé
printf("%s",**P);
J'obtiens une erreur d'exécution. Quelqu'un peut-il m'aider ?
Merci Madhu