Explore topic-wise InterviewSolutions in .

This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.

1.

Find out the correct statement for the following program.#include "stdio.h"int * arrPtr[5];int main(){if(*(arrPtr+2) == *(arrPtr+4)){printf("Equal!");}else{printf("Not Equal");}return 0;}(A) Compile Error(B) It’ll always print Equal.(C) It’ll always print Not Equal.(D) Since elements of arrPtr aren’t initialized in the program, it’ll print either Equal or Not Equal.

Answer»