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
2 answers
1201
0 votes
1 answer
1202
Heap Storage Allocation "SUPPORT RECURSION OR NOT"??
0 votes
1 answer
1203
find the output for A(6)A(n){if (n<1) return 1;else return A(n-2)+B(n-1)}B(n){if(n<=1)return 1;else return B(n-1)+A(n-2)}
0 votes
1 answer
1204
1 votes
2 answers
1208
2 votes
1 answer
1209
WHICH OF THE FOLLOWING IS THE BEST CHOICE AS $m$ IN THE HASH FUNCTION $h(k)=k \mod m$??$61$$701$$81$answer is given as $701$ but how??
0 votes
1 answer
1210
0 votes
2 answers
1211
How far is Defining a function and macro related with each other?
0 votes
1 answer
1213
What is meaning of Underline Text??
0 votes
1 answer
1214
I think ans is C(index start with 0)
0 votes
1 answer
1215
What is meaning of underline ??
0 votes
1 answer
1216
The value of the postfix expression 10,8,4,+,-,5,12,3,/,+,4,+,* is_________________.i think ans is -26. correct me if i wrong.but given ans is +26 .
0 votes
1 answer
1217
Array declared by Const can change??please tell me why Option C is wrong..
0 votes
2 answers
1218
how we can identify the segmentation fault??
0 votes
1 answer
1219
#include <stdio.h int make_it(int *x,int *y, int *z){ *x *= *y+*z; *y=*x<<1; *z=*x+*y; } int main(void) { int a=5, b=10; printf("%d%d",a,b); make_it(&b,&a,&(a+b)); printf...