• Courses
  • Tutorials
  • Jobs
  • Practice
  • Contests

C Quiz - 111 | Question 4

Pick the best statement for the below program: C
#include \"stdio.h\"
 
void fun(int n)
{
   int idx;
   int arr1[n] = {0};
   int arr2[n];
 
   for (idx=0; idx<n; idx++)
       arr2[idx] = 0;    
}
 
int main()
{
   fun(4);
   return 0;
}

(A)

Definition of both arr1 and arr2 is incorrect because variable is used to specify the size of array. That’s why compile error.

(B)

Apart from definition of arr1 arr2, initialization of arr1 is also incorrect. arr1 can’t be initialized due to its size being specified as variable. That’s why compile error.

(C)

Initialization of arr1 is incorrect. arr1 can’t be initialized due to its size being specified as variable. That’s why compile error.

(D)

No compile error. The program would define and initializes both arrays to ZERO.

Answer

Please comment below if you find anything wrong in the above post
Feeling lost in the world of random DSA topics, wasting time without progress? It's time for a change! Join our DSA course, where we'll guide you on an exciting journey to master DSA efficiently and on schedule.
Ready to dive in? Explore our Free Demo Content and join our DSA course, trusted by over 100,000 geeks!

Last Updated :
Share your thoughts in the comments