Interview Puzzle
The Latest and exclusive collection of Interview Puzzle to tease your brain. Interview Puzzle helps exercising the brain and develop it to think logical and solve real world problems differenlty. PuzzleFry brings you the best Interview Puzzle, you'll enjoy wide range of Interview Puzzle, Lets try few Interview Puzzle listed below -
-
What will be the output of the following program?
int main() { union { int i; int j; void f() { printf("i=%d, j=%d\n", i, j); } }; i = 3; j = i+++ ++i; f(); return 0; }
View SolutionSubmit Solution- 1,440.2K views
- 3 answers
- 0 votes
-
A bus route has a total duration of 40 minutes.
Every 10 minutes, two buses set out, one from each end.How many buses will one bus meet on its way from one end to the other end?
View SolutionSubmit Solution- 1,470.2K views
- 4 answers
- 1 votes
-
What will be the output of the program-
print(5);
void print (int n){ if (n>0){ printf(“hello”); print(n-1); } printf(“world”); }
View SolutionSubmit Solution- 1,474.9K views
- 3 answers
- 1 votes