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}}}$$

Most viewed questions in Programming

0 votes
1 answer
1281
What are the time complexities of finding 8th element from beginning and 8th element from end in a singly linked list? Let n be the number of nodes in linked list, you ma...
0 votes
0 answers
1282
Please convert it to postfix by using stack and explain in detailvoid (*bsd_signal(int sig, void (*func)(int)))(int);
0 votes
1 answer
1286
Is there any shortcut to solve the AckerMann function ?e.g. I want to find the value of A(3,1).https://en.wikipedia.org/wiki/Ackermann_function
0 votes
1 answer
1287
C is by default row major or column major?
0 votes
1 answer
1288
Hi, can anyone please suggest me an online site where I can run code in C and test how the code will act under bid endian environment?
0 votes
2 answers
1289
How 22 ?
1 votes
3 answers
1292
main(){int i, x=5, y=10;for(i=1;i<=2;i++){y+=f(x) + g(x);printf("%d", y);}}f(int x){int y;y=g(x);return (x+y);}g(int x){static int y=5;y=y+7;return (x+y);} Kindly explain...
1 votes
2 answers
1293
What is the time complexity to delete the root node in right skew tree?I knew the three cases of BST deletion:- 0 child,one child,two child.But how can we handle this par...
2 votes
1 answer
1295
int main() { int i,n; int x = 123456789; void *a = &x; unsigned char *c1 = (unsigned char*)a; for(i=0;i< sizeof a;i++) { printf("%u ",*(c1+i)); } char *c2 = (char*)a; pri...
2 votes
2 answers
1298
0 votes
1 answer
1299
In a min heap time complexity for1: Find the 7th smallest element2: Delete the 7th smallest element