1.

What will be the output? #include int main() { int arr[]={1,2,3,4,5,6}; int i,j,k; j=++arr[2]; k=arr[1]++; i=arr[j++]; printf ("i=%d,j=%d,k=%d",i,j,k); return 0; } A)i=5,j=5,k=2 B)i=6,j=5,k=3 C)i=6,j=4,k=2 D)i=5,j=4,k=2

Answer»

A) i=5,j=5,k=2Explanation:You NEED to TYPE just after #INCLUDE otherwise it'll show error. I just RUN it myself and then answering you. So its 100% correct answer. I hope it helps you. Please Mark this Answer as BRAINLIEST Answer. Thanks❤️



Discussion

No Comment Found