Which option below best describes the output from the foll…
Which option below best describes the output from the following program: #include int main(){ int x[5], y, *x_ptr; x_ptr = x; for (y=0; y < 5; y++) x[y]=y; if (*(x_ptr + 2) != x[2]) printf("Red "); else printf("Blue "); printf("%d",*(x_ptr + 2)) return 0;}
Read Details