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

1 votes
0 answers
282
What is the value of $f(4)$ using the following $C$ code:int f(int k){ if(k<3) return k; else return f(k-1) * f(k-2) + f(k-3); }$5$$6$$7$$8$
2 votes
1 answer
283
#include <stdio.h>int main(){ static int i = 6; if( i) { main(); printf("%d", i+1); } return 0;}Please explain the output of this program ?
2 votes
1 answer
284
int a = 50, b = 50;a = a+++++b;b = b+++++a; Value of b after executing these .I think it should be undefined behaviour. But in answer it is given 155. Can anybody verify ...
1 votes
1 answer
285
if two variable are declared in different function with same name and static keyword then there will one variable in memory or two different variable [refrence gate 2020 ...
0 votes
2 answers
286
How to calculate the sizeof(arr2)?
0 votes
0 answers
287
0 votes
2 answers
288
int main(){ float f=0.7; if(f==0.7) printf("equal"); else printf("not equal"); return 0;} ...
0 votes
0 answers
289
“An Extern variable will be initialized to 0 if not initialized” is this statement correct? If yes then How it can initialize because when we write “ extern int a �...
0 votes
1 answer
291
. Write Quicksort Algorithm using last element as pivot element. Apply this algorithm to sort the following list of array element. Show action step by step. 23, 12, -7,...
0 votes
3 answers
293
#include <stdio.h>int main(){ int a=20; int *ptr=&a; int x=a; printf ("%p\n",&*ptr); printf ("%p\n",&a); return 0;}Why both printf() line printing the s...
0 votes
1 answer
294
Can anyone help explain the concept of enums through this question,please?
0 votes
2 answers
295
How to use substitution method
2 votes
2 answers
296