Recent questions in Programming and DS

0 votes
1 answer
3422
Link to the question - https://gateoverflow.in/20611/tifr2011-b-30Someone please simplify that question and explain.
0 votes
1 answer
3423
Why is the answer a).Answer should be c.Please tell if I am wrong...
4 votes
1 answer
3424
0 votes
1 answer
3425
What is the correct option??dummy header is sometimes used to point first node and sometime last but here I don,t know what is correct option?
1 votes
3 answers
3426
0 votes
1 answer
3427
What is this statement means ?? what is correct option??
0 votes
3 answers
3431
what does following code mean if j=0 and a and b are two character pointers to two strings: while(a[j]&&b[j])
0 votes
0 answers
3432
What does the following program print?#include < stdio.h >void f (int *p, int * g) {p = q;*p = 2;}int i = 0, j = 1;int main ( ){f(&i, & j);printf ("%d %d \ n", i, j);retu...
0 votes
0 answers
3433
how this question gives -3? according to rule both pointers must pointing to same array then only difference ie ptr1-ptr2 is used but here how answer always is -3???Turbo...
2 votes
1 answer
3439
T(n)=2.T((n)^(1/2)) + log ((n)^(1/2))whats the time complexity?????????????????????????/
0 votes
2 answers
3440
Please tell why answer is (d)?