Recent questions in Programming and DS

0 votes
0 answers
1951
0 votes
2 answers
1952
–1 votes
0 answers
1953
1 votes
1 answer
1954
#include<stdio.h int main(void) { printf("bytes occupied by '7' = %d\n", sizeof('7')); printf("bytes occupied by 7 = %d\n", sizeof(7)); printf("bytes occupied by 7.0 = %d...
1 votes
2 answers
1955
Minimum number of internal nodes in an AVL tree with height 5?Please give a standard procedure that can be applied to larger heights as well. I know the formula: S(h) = S...
0 votes
4 answers
1958
main(){int a = 1; int b = 1; int c = a || b ; printf("a = %d b=%d\n",a,b); return 0;}
0 votes
1 answer
1959
How to generate post order array from given in order array [8,6,9,4,7,2,5] ?
0 votes
1 answer
1960
Please explain solution in brief . #include <stdio.h void f(char ); int main() { char *argv[] = { "ab", "cd", "ef", "gh", "ij", "kl" }; f(argv); return 0; } void f(char ...
0 votes
2 answers
1961
What changes must be done for printing value 5. #include <stdio.h int main() { int var; /*Suppose address of var is 2000 */ void *ptr = &var; *ptr = 5; printf("var=%d and...
0 votes
1 answer
1965
The number of times “MadeEasy” will be printed ________.
0 votes
1 answer
1966
Consider a stack is used to evaluate fully parenthesized arithmetic expression from left to right. Each opperand is placed on the stack and operators operate on top two e...
0 votes
2 answers
1967
Consider A be a 2-dimensional array declared as follows: A[15] [15] of integers. Assume each integer take 1B. The array stored in row major order and first element of arr...