0
How the program executes and how to solve this?
int arr[2][3]={2, 3, 4, 5, 6, 7}; printf("%d", (*(*(arr+1)))); Output is 5
4 ответов
0
This contains a syntax error
0
Bebida Roja sorry I have forgotten to add a "+" symbol in the print stmt.
Now it is updated.
0
Use the fact that *(arr + i)==arr[i]
0
Ok thanks