Array in C Language - Quiz

  • ASequential
  • BRandom
  • CSequential and Random
  • DNone of the above
  • Aptr is array of pointers to 10 integers
  • Bptr is a pointer to an array of 10 integers
  • Cptr is an array of 10 integers
  • Dptr is an pointer to array
  • AAddress of the array.
  • BValues of the first elements of the array.
  • CAddress of the first element of the array.
  • DNumber of element of the array.
  • AThe code is erroneous since the statement declaring array is invalid.
  • BThe code is erroneous since the subscript for array used in for loop is in the range 1 to size.
  • C The code is correct and runs successfully.
  • DThe code is erroneous since the values of array are getting scanned through the loop.