Question 17
Answer saved
Marked out of 1.00
What will be the output of the following C code?
1.#include <stdio.h>
2.
int main()
3.{
4.
5.
int ary[4] = {1, 2, 3, 4};
int *p = ary + 3;
6.printf("%d", p[-2]);
7.}
Oa. Compile time error
Ob. Some garbage value
c. 2
d. 1
Clear my choice