Hot questions in Programming and DS

0 votes
1 answer
2781
Data structure for loop. What is oxf ? can somebody explain
3 votes
2 answers
2782
0 votes
1 answer
2783
pointers question, can someone please explain me solution
0 votes
1 answer
2785
1 votes
0 answers
2786
IIndex of node in BST = no of nodes in left subtree +1 . Is this definition valid
0 votes
0 answers
2788
#include<stdio.h int fun1(int x) { x=14; } int fun2(int x) { x=20; } int main() { int(*p)(),m,n; scanf("%d",&m); if(m) p=fun1; else p=fun2; n=(*p)(); printf("%d",n); retu...
1 votes
1 answer
2789
there was a question on global counter variablewhat is the answer to that question???
1 votes
1 answer
2792
0 votes
2 answers
2793
Time complexity circular LLi think aswer is A . this Q is similarto https://gateoverflow.in/61880/complexity but here they haven't mentioned about any pointer.here is m...
0 votes
0 answers
2794
0 votes
1 answer
2796
If a directed graph G is cyclic but can be made acyclic by removing 1 edge then a DFS will encounter exactly 1 Backedge. True or false ?
0 votes
2 answers
2797
swap(int c, int d) { int k,t; k=3; t=c; c=d; d=t; k=c+d+t; } main() { int k=5, l=9; swap(k,l); printf("%d,%d",k,l); }9,55,95,1919,5
0 votes
0 answers
2799
0 votes
0 answers
2800