GATE CS

Programming & Data Structures, GATE CS Quiz

10 questions

Question 1 of 10Score: 0 / 0

What does the following C code print? int a[] = {10, 20, 30}; int *p = a; printf("%d", *(p+2));