• Courses
  • Tutorials
  • Jobs
  • Practice
  • Contests

C Quiz - 112 | Question 3

Pick the best statement for the below program: C
#include \"stdio.h\"

int main()
{
 struct {int a[2], b;} arr[] = {[0].a = {1}, [1].a = {2}, [0].b = 1, [1].b = 2};

 printf(\"%d %d %d and\",arr[0].a[0],arr[0].a[1],arr[0].b);
 printf(\"%d %d %d\\n\",arr[1].a[0],arr[1].a[1],arr[1].b);

 return 0;
}

(A)

Compile error because struct type (containing two fields i.e. an array of int and an int) has been specified along with the definition of array arr[] of this struct type.

(B)

Compile error because of incorrect syntax for initialization of array arr[].

(C)

No compile error and two elements of arr[] would be defined and initialized. Output would be “1 0 1 and 2 0 2”.

(D)

No compile error and two elements of arr[] would be defined and initialized. Output would be “1 X 1 and 2 X 2” where X is some garbage random number.

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