logo

CuriousTab

CuriousTab

Arrays problems


  • 1. What will be the output of the program?
    #include<stdio.h>
    
    int main()
    {
        int arr[1]={10};
        printf("%d\n", 0[arr]);
        return 0;
    }
    

  • Options
  • A. 1
  • B. 10
  • C. 0
  • D. 6
  • Discuss

First 2