What is the output of the below given C code?

#include

 int main()

{

 struct company

{

 char name[9] = "Quizall";

 int no_of_employee = 175;

};

 struct company data;

 printf("%d ", data.no_of_employee);

 printf("%s", data.name);

 return 0;

}

1
175 Quizall
2
Quizall 175
3
Runtime error
4
Compile Time error

Sponsored

hivanix.in

Visit

This quiz is brought to you by hivanix.in

🌐 Web App Development

Quick Navigation