+ 2
Can anyone help me with this question in c?
What is the output of this code? #include <stdio.h> int main() { static int a[] = {10, 20, 30, 40, 50}; static int *p[11= {a, a+3, a+4, a+1, a+2}; int **ptr = p; ptr++; printf("%d%d", ptr - p, **ptr); }
1 Resposta
+ 1
hope it clears.....!
https://www.sololearn.com/Discuss/2971921/?ref=app