Company: Qualcomm_8thaug
Difficulty: easy
What will be the output of the program given below? int main() { int x[] = {2, 4, 5, 7, 9}; int *p = x; printf("%d %d", *p, x[*p]); return 0; } Pick ONE option 2 1 2 5 4 9 4 7 Output Format Print the text of the correct option exactly as it appears above.