The ones who are crazy enough to think they can change the world are the ones who do.- Steve Jobs
In most of the MNC interview questions such as in ZOHO interview question, IVTL Infoview interview questions, Amazon interview questions, GOOGLE interview questions, Infosys interview questions and even in Voonik interview questions, We come across several Tricky C Questions about which 2:5 of the questions are from While Loop in c. Solving that kind of tricky C questions is not an easy task for all C programmers. We need more practices to solve it with ease. So we provide 25+ interesting C questions in While Loop to make your MNC interview very easy.
1. What will be the output of the C program?
#include<stdio.h> int x = -1; int main(){ while(x++ == 1) printf("loop"); return 0; }
Option: A
The condition of this loop says that if x++ == 1 then executes the statement, otherwise don't. The condition is false so the control exit from the loop and program ends.
2. What will be the output of the C program?
#include<stdio.h> int main(){ int i = 5; while(--i > 0) printf("Loop "); return 0; }
A. Loop Loop Loop Loop Loop Loop✘
Option: C
We have declared and intialize the variable i = 5, the condition is (--i > 0). Here i is pre-decremented one by one until 1. It will be 4, 3, 2 and 1 for each iteration.
3. What will be the output of the C program?
#include<stdio.h> int main(){ while(printf("%d", 5) < 4) printf("Loop "); return 0; }
B. 5Loop 5Loop 5Loop 5Loop 5Loop✘
D. Infinite iterations or Infinite Loop✔
Option: D
We don't have any control in the above C program because there is no variables. If there is any variable we can control it. The condition is (printf("%d", 5) < 4) it will be (1 < 4), the condition is always true. So the loops is infinite. The same program using some variable.
#include<stdio.h> int main(){ int i = 0; while(printf("%d", 5) < 4) { printf("Loop "); if(i == 4) break; else i++; } return 0; }
4. What will be the output of the C program?
#include<stdio.h> int main() { int i = 0; while(i < 4, 5) { printf("Loop "); i++; } return 0; }
Option: A
The above while loop have a condition while(i < 4, 5) it is in the format of while(expression1, expression2), here it is seperated by a comma(,) operator, so the expression1 is evaluated first then expression2 is evaluted, though expression1 is failed, expression2 will execute until the expression2 becomes false.
5. What will be the output of the C program?
#include<stdio.h> int main() { int i; while(0, i < 4) { printf("Loop "); i++; } return 0; }
Option: C
The condition (0, i < 4) is in the format (expression1, expression2), here expression1(0) goes false, though expression2 will get executed until expression2 is false.
We may make mistakes(spelling, program bug, typing mistake and etc.), So we have this container to collect mistakes. We highly respect your findings.
© Copyright 2019