Skip to content
Related Articles
Open in App
Not now

Related Articles

C | Structure & Union | Question 10

Improve Article
Save Article
Like Article
  • Difficulty Level : Easy
  • Last Updated : 28 Jun, 2021
Improve Article
Save Article
Like Article

Predict the output of following C program




#include<stdio.h>
struct Point
{
  int x, y, z;
};
  
int main()
{
  struct Point p1 = {.y = 0, .z = 1, .x = 2};
  printf("%d %d %d", p1.x, p1.y, p1.z);
  return 0;
}

(A) Compiler Error
(B) 2 0 1
(C) 0 1 2
(D) 2 1 0


Answer: (B)

Explanation: Refer designated Initialization discussed here.

Quiz of this Question

My Personal Notes arrow_drop_up
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!