+ 2
i don't understand this pointr problem
6 Respostas
+ 2
printf("%s ", *(*(*cpp)));
printf("%s ", *(*(*(cpp+1))));
printf("%s ", *(*(*(cpp+2))));
printf("%s ", *(*(*(cpp+3))));
0
i am not understand please help me
0
what's your goal of this program ?
0
my goel is to understand this question
0
what is it ?
0
you have int c[10];
you can use c[1]; as same as *(c+1);