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

3 votes
2 answers
3641
The following code fragment: int x, y= 2, z, a; x= (y* =2) + (z= a =y); printf(“%d”, x); (a) prints 8(b) prints 6(c) prints 6 or 8 depending on the compile...
2 votes
1 answer
3642
1 votes
1 answer
3646
How C will behave with negative operands with modulus  operator?
1 votes
2 answers
3647
consider following code segment  in cmain(){char * z="abc";z[0]='x';printf("%s",z);}what will be behavior of the programa>compiler error   b>runtime error c>no error pr...
1 votes
1 answer
3648
1 votes
1 answer
3649
How tokens are assigned for a string having escape sequence in C lexical phaseEg..printf ("this\" is a string\"");and what forprintf ("this is""a string");
4 votes
4 answers
3650
Which of the following has the compilation error in C?int n = 17;char c = 99;float f = (float)99.32;#include <stdio.h>
3 votes
2 answers
3651
Suppose graph G has minimum spanning tree computed.How  quickly can we update minimum spanning tree if we add new vertex and incident edges to G?
5 votes
2 answers
3652
Convert following infix to prefix expressione^d-a*b^f/g+h*c/i+j-kExplain each step
7 votes
5 answers
3653
Consider the following program fragment if(a b) if(b c) s1; else s2;s2 will be executed ifa <= bb cb >= c and a <= ba b and b <= c
7 votes
3 answers
3654
Consider the following declaration:int a, *b=&a, c=&b;The following program fragmenta=4; c=5;does not change the value of aassigns address of $c$ to $a$assigns the valu...
2 votes
1 answer
3659
following statmentprintf("%f",9/5);prints answer is 2.0 can any one explain plzzzzz
1 votes
2 answers
3660