Web-Technologies
November 6, 2023Data-Interpretation
November 6, 2023Question 11520 – Programming
Consider the following ‘C’ language declaration in a[4] = {1,2,3,4}; What would be the output of the following
Printf(“%d”, *(a+2)+1);
Correct Answer: D
Question 377 Explanation:
*(a+2)+1 = a[2]+1 = 3+1 = 4
2
3
4
None of the above
Subscribe
Login
0 Comments