Company: Qualcomm_8thaug

Difficulty: easy

Problem Statement

Which of the following statement given in the option is true about the program given below? int main() { int i = 25; int *p = &i; int **p1 = &p; int ***p2 = &p1; printf("%d", ***p2); return 0; } Pick ONE option It will give the output: 25 It will show runtime error It will show compile time error It will not execute Output Format Print the text of the correct option exactly as it appears above.

More Qualcomm_8thaug OA questionsInterview experiences