Recent questions tagged programming

0 votes
1 answer
121
#include<stdio.h>void print(int n){ printf("Hello "); if(n++ == 0) return ; print(n); n++;}int main(){ void print(); print(-4);}
0 votes
1 answer
122
We have stored an element after a few elements in an array, where the array size is unknown, then find the position of in array.
2 votes
2 answers
123
Why can’t we do pointer initialization as int *p; *p=x; instead of p = &x; ?
2 votes
3 answers
125
18 votes
4 answers
126
0 votes
1 answer
127
how many topological sort possible for above graph?directions like this question https://gateoverflow.in/39669/gate-cse-2016-set-1-question-11