Teaching Rajasthan Basic Computer Instructor 2021 Mock Test Programming and Data Structure Programming in C
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