#include<stdio.h> int main() { int arr[1]={10}; printf("%d\n", 0[arr]); return 0; }
Step 2: printf("%d\n", 0[arr]); It prints the first element value of the variable arr.
Hence the output of the program is 10.
Copyright ©CuriousTab. All rights reserved.