⟩ 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)
Option B
*(*(*(*(a+i)+j)+k)+l)
Option B
*(*(*(*(a+i)+j)+k)+l)
What is #error and use of it?
Where define directive used?
What are types of Preprocessor in C?
What is include directive in C?
What are # Preprocessor operator in C?
Can a file other than a .h file be included with #include?
What is define directive?
What are the advantages of using macro?
What is #define?
What is typedf?