Hot questions in Programming and DS

0 votes
0 answers
2381
If B[8] and B[8][8] are on LHS of assignment operator will they cause compilation problemReference - Gate 2003 4.7.14 GO pdf
1 votes
3 answers
2382
in ci found that for(i=1;i<6;i++) { printf("%d",i); }and for(i=1;i<6;++i) { printf("%d",i); }but the ++i and i++ are different in natur...
1 votes
0 answers
2384
How many max-heaps can be formed with the following elements?$\{1,1,1,2,2,2,3,3,3,4,4,4\}$
0 votes
1 answer
2385
Is there any shortcut to solve the AckerMann function ?e.g. I want to find the value of A(3,1).https://en.wikipedia.org/wiki/Ackermann_function
0 votes
0 answers
2386
Minimum number of temporary variables needed to swap two variables is?
1 votes
2 answers
2387
13. What does the error "Null Pointer Assignment" mean and what causes this error?
0 votes
1 answer
2389
Consider a C Program situation like this, main() { float a=2.23564; printf("%d",a); }Then what will be the output??please help me..
0 votes
0 answers
2390
19 votes
4 answers
2391
The best data structure to check whether an arithmetic expression has balanced parentheses is aqueuestacktreelist
0 votes
1 answer
2392
1 votes
0 answers
2393
am i right ??
0 votes
1 answer
2394
how the get 3n/2 -2 comparision
0 votes
0 answers
2395
A ds is reqd. For storing a set of integers such that each of the following operations can be done in O (logN) time where N is the no. Of elements in the setDeletion of s...
0 votes
1 answer
2397
0 votes
0 answers
2398
0 votes
1 answer
2399
https://gateoverflow.in/39667/gate2016-1-10in this question we are using array so both operations are taking constant only becz of in array random access is possible so d...
0 votes
1 answer
2400
int *I ,j;I =&j; why it is valid since j has not been defined so no memory will be allocated to j and I is having the address of J so it must saw segmentation fault