Hot questions in Programming and DS

0 votes
1 answer
2433
What is a variable pointer? please note the question is not asking about pointer variables, but the specific term.
0 votes
0 answers
2435
Is there any graph whose number of BFS and DFS traversals are different?If so which graph.
0 votes
0 answers
2438
Option B ? Following is a function Mystery() which takes a list and sorts it. Line 1and Line 2 are left blank intentionally.
0 votes
1 answer
2439
Solve the following recurrence relation :-N(h)=N(h−1)+N(h−2)+1
0 votes
0 answers
2440
Please provide solution
0 votes
0 answers
2442
0 votes
1 answer
2443
2 votes
1 answer
2444
case : 'AB' is it valid to write multiple characters in single quotes?And if valid does ASCII value of a& b gets added and stored as integral constant?Thanks
1 votes
1 answer
2446
What will be the output?
2 votes
1 answer
2449
0 votes
3 answers
2450
How many times will the loop execute?What is the general expression in terms of 'n'?for( i=1; i<=n; i=i*3) { for( j=i; j<=n; j++) { printf ...