CSE MCQs :: C-MCQs
-
What is the output of this C code?
int main()
{
printf("Hello World! %d \n", x);
return 0;
} -
What is the output of this C code?
int main()
{
int y = 10000;
int y = 34;
printf("Hello World! %d\n", y);
return 0;
} - Which of the following is not a valid variable name declaration?
-
What will happen if the below program is executed?
int main()
{
int main = 3;
printf("%d", main);
return 0;
} -
What is the problem in following variable declaration?
float 3Bedroom-Hall-Kitchen?;