Teaching Rajasthan Basic Computer Instructor 2021 Mock Test Programming and Data Structure Programming in C
नीचे दिए गए C कूट का आउटपुट क्या है?
#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
रनटाइम त्रुटि
4
कम्पाइल टाइम त्रुटि