Hot questions in Programming and DS

1 votes
1 answer
4891
0 votes
1 answer
4892
1 votes
1 answer
4893
0 votes
2 answers
4894
Which of the following permutation can be obtained in the output (in the same order) using a stack assuming that the input is the sequence $1, 2, 3, 4$ in that order?3, 4...
0 votes
2 answers
4896
1 votes
0 answers
4898
0 votes
1 answer
4899
What will be output of the following C codevoid main( ){static int main;int a;a = value(main);printf(“%d”, a);}int value(int val2){val2++;return val2;}
–3 votes
1 answer
4900
What does this question mean?
0 votes
1 answer
4901
Pointers in C-programming are useful to1.Handle data tables efficiently.2.Reduce the length of a program.3.Reduce the complexity of a program.Which of the above statement...
0 votes
1 answer
4902
0 votes
0 answers
4904
2 votes
3 answers
4905
–2 votes
1 answer
4906
1 votes
1 answer
4908
what is the time complexity of creating an avl tree??????
0 votes
1 answer
4909
0 votes
1 answer
4910
The postfix expression for the infix expression$$A + B*C/D +E$$isAB+*CD/E+ABC*D/+E+AB+C*D/E+A+*BCD/E+