MCQ Single Best Answer Not Set

QWhat is the output of this C code?
    #include "stdio.h"
    union stu
    {
        int ival;
        float fval;
    };
    void main()
    {
        union stu r;
        r.ival = 5;
        printf("%d", r.ival);
    }

ID: #2675 Union in C Language 2,747 views
Question Info
#2675Q ID
Not SetDifficulty
Union in C LanguageTopic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A 9
  • B Compile time error
  • C 16
  • D 5
Correct Answer: Option D

Explanation

5

Share This Question

Challenge a friend or share with your study group.