What would be the equivalent pointer expression for referring the array element a[i][j][k][l]
A. ((((a+i)+j)+k)+l)
B. *(*(*(*(a+i)+j)+k)+l)
C. (((a+i)+j)+k+l)
D. ((a+i)+j+k+l)
Submitted by: MuhammadOption B
*(*(*(*(a+i)+j)+k)+l)
Submitted by: Muhammad
*(*(*(*(a+i)+j)+k)+l)
Submitted by: Muhammad
c
Submitted by: Vicithra
Submitted by: Vicithra
Read Online C Pointers Job Interview Questions And Answers
Top C Pointers Questions
| ☺ | What would be the equivalent pointer expression for referring the array element a[i][j][k][l] |
| ☺ | Tell me with an example the self-referential structure? |
| ☺ | Explain what is the purpose of "extern" keyword in a function declaration? |
| ☺ | What is the difference between exit() and _exit() function? |
| ☺ | Do you know the use of fflush() function? |
Top C Programming Categories
| ☺ | C Functions Interview Questions. |
| ☺ | C Pointers Interview Questions. |
| ☺ | C Preprocessor Interview Questions. |
