Webpage

Programming in C. Recursion.

$$\scriptsize{\overset{{\large{\textbf{Mark Distribution in Previous GATE}}}}{\begin{array}{|c|c|c|c|c|c|c|c|}\hline
\textbf{Year} & \textbf{2022}&\textbf{2021-1}&\textbf{2021-2}&\textbf{2020}&\textbf{2019}&\textbf{2018}&\textbf{2017-1}&\textbf{2017-2}&\textbf{2016-1}&\textbf{2016-2}&\textbf{Minimum}&\textbf{Average}&\textbf{Maximum}
\\\hline\textbf{1 Mark Count} & 1 &0&2&1&2&2&1&2&2&1&0&1.4&2
\\\hline\textbf{2 Marks Count} & 2&2&2&1&3&3&4&4&2&2&1&2.5&4
\\\hline\textbf{Total Marks} & 5&4&6&3&8&8&9&10&6&5&\bf{4}&\bf{6.4}&\bf{10}\\\hline
\end{array}}}$$

Recent questions in Programming

0 votes
0 answers
3421
unsigned fun(unsigned a, unsigned b) { int i; unsigned j = 0; for(i = 0; i < 32; i++) { j <<= 1; j += !!(a & 0x80000000); a <<= 1; if(j >=b) { j -= b; a++; } } return a; ...
0 votes
1 answer
3422
0 votes
2 answers
3423
void main() { unsigned giveit=-1; int gotit; printf("%u ",++giveit); printf("%u \n",gotit= giveit); }
0 votes
1 answer
3424
0 votes
1 answer
3425
In while loop semicolon at the end of while create infinite loopBut in do while(); semicolon at the end of while don't create infinite loop.actually it is correct syntax ...
0 votes
0 answers
3426
0 votes
0 answers
3427
0 votes
2 answers
3428
1. const char *a; 2. char* const a; 3. char const *a; -Differentiate the above declarations.
0 votes
1 answer
3429
main() { int i=5,j=10; i=i&=j&&10; printf("%d %d",i,j); }
0 votes
2 answers
3430
void main() { typedef struct a aType; aType someVariable; struct a { int x; aType *b; }; }
0 votes
1 answer
3431
void main() { int i=10, j=2; int *ip= &i, *jp = &j; int k = *ip/*jp; printf(&ldquo;%d&rdquo;,k); }
0 votes
2 answers
3432
the number of binary trees with 3 nodes which when traversed in post order gives the sequence a,b,c isa)3 b)9 c)7 d)5
0 votes
1 answer
3433
the expression 1*2^3*4^5*6 will be evaluated as a)32^30 b)162^30 c)49152 d)173458
1 votes
1 answer
3434
minimum no of nodes n AVL tree of height 11 is a)230 b)231 c)232 c)233
0 votes
1 answer
3435
1:Where I find printf body in turbo cI know the prototype defined in stdio.h header file but body is not there?2:why without include header file program successfully comp...
0 votes
1 answer
3436
0 votes
1 answer
3437
K is int typeK=2.0/9;What k will print? In let us c they give that k final value is 0.0But I think it's value is 0
0 votes
2 answers
3438
main() { { extern int i; int i=20; { const volatile unsigned i=30; printf("%d",i); } printf("%d",i); } printf("%d",i); } int i;
0 votes
0 answers
3440