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.

Both of the following declarations for function pointers are equivalent. Second one (i.e. with typedef) looks cleaner./* First Declaration */int (*funPtr1)(int), (*funPtr2)(int);/* Second Declaration*/typedef int (*funPtr)(int);funPtr funPtr1, funPtr2;(A) TRUE(B) FALSE

Answer»