Open In App

C Quiz – 112 | Question 4

Like Article
Like
Save Article
Save
Share
Report issue
Report

Pick the best statement for the below program: 

C




#include <stdio.h>
 
int main()
{
    struct {
        int i;
        char c;
    } myVar = {.i = 100, .c = 'A'};
     
    printf("%d %c", myVar.i, myVar.c);
     
    return 0;
}


(A)

Compile error because struct type (containing two fields of dissimilar type i.e. an int and a char) has been mentioned along with definition of myVar of that struct type.

(B)

Compile error because of incorrect syntax of initialization of myVar. Basically, member of operator (i.e. dot .) has been used without myVar.

(C)

Compile error for not only B but for incorrect order of fields in myVar i.e. field c has been initialized first and then field i has been initialized.

(D)

No compile error and it’ll print 100 A.



Answer: (D)

Explanation:

As per C language, initialization of a variable of complete data type can be done at the time of definition itself. Also, struct fields/members can be initialized out of order using field name and using dot operator without myVar is ok as per C. Correct answer is D.


Quiz of this Question
Please comment below if you find anything wrong in the above post


Last Updated : 28 Jun, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads