Hot questions in Programming and DS

0 votes
0 answers
3082
1 votes
0 answers
3083
Given Only one of the traversal(pre,post,in) can we identify other remaining traversals using given traversals.AND if not, can we Atleast cross check from optio s given(...
2 votes
0 answers
3084
what is the output of above code using call by copy restore??????/is call by is in gate syllabus
2 votes
0 answers
3085
–1 votes
0 answers
3086
0 votes
1 answer
3087
What is the output generated by this code?main(){ int i=0; printf("%d %d %d %d %d %d %d", i++, ++i, i, i++, i, ++i, i++); }4 4 3 2 2 2 04 5 5 2 5 5 00 2 2 2 2 4 4Compiler...
2 votes
0 answers
3089
#include<stdio.h>int main(){char arr[5][7][6];char *p[5][7][6];printf("%d\t", (unsigned)(arr+1)-(unsigned)arr);printf("%d", (unsigned)(p+1)-(unsigned)p);}
2 votes
0 answers
3091
1 votes
0 answers
3092
Find number of BST's possible with 6 nodes numbered 1,2,3,4,5 and 6 having 6 as root and height of 4 ?please explain in detail ...
27 votes
3 answers
3093
The elements $32, 15, 20, 30, 12, 25, 16,$ are inserted one by one in the given order into a maxHeap. The resultant maxHeap is
1 votes
0 answers
3094
1 votes
1 answer
3095
0 votes
0 answers
3096
0 votes
0 answers
3097
#include<stdio.h int reverse(int); int main() { int num=4; reverse(num); return 0; } int reverse(num) { if(num==0) return 0; else printf("%d",num); reverse(num ); }What i...
1 votes
1 answer
3099
–1 votes
1 answer
3100
IS IT A CBT?