MCQ Single Best Answer Not Set

QWhat is the output of this C code?

    #include <stdio.h>
    struct
    {
        int k;
        char c;
    };
    int main()
    {
        struct p;
        p.k = 10;
        printf("%d\n", p.k);
    }

ID: #2651 Structure in C Language 1,595 views
Question Info
#2651Q ID
Not SetDifficulty
Structure in C LanguageTopic

Choose the Best Option

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

  • A Compile time error
  • B 10
  • C Undefined behaviour
  • D Segmentation fault
Correct Answer: Option A

Explanation

Compile time error

Share This Question

Challenge a friend or share with your study group.