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
3441
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
3443
0 votes
2 answers
3445
an array can be passed in a function in C througha)call by value only b)call by reference only c)both by call by value and call by reference d) none
0 votes
2 answers
3446
a machine needs min. of 100 sec to sort 1000 names by quick sort .the min time needed to sort 100 names will be approx.a)50.2 sec b)6.7 sec c) 72.7 sec d)11.2 sec
1 votes
2 answers
3447
a machine took 200 sec to sort 200 names using bubble sort . in 800 sec it can approx sort how many namesa)400 b)800 c)750 d)850
0 votes
2 answers
3448
a full 3-ary tre with 100 vertices have a)57 leaves b) 67 leaves c)77 leaves d) 87 leaves
0 votes
2 answers
3449
0 votes
1 answer
3450
main() { int i=3; switch(i) { default:printf("zero"); case 1: printf("one"); break; case 2:printf("two"); break; case 3: printf("three"); break; } }
0 votes
1 answer
3451
1 votes
2 answers
3452
Assume that the size of an integer is 4 bytes. Predict the output?#include <stdio.h int fun() { puts(" Hello "); return 10; } int main() { printf("%d", sizeof(fun())); re...
1 votes
1 answer
3453
What is dynamic variable.? Is there any benefit of using dynamic variable instead of static variable?
0 votes
1 answer
3455
1 votes
1 answer
3456
char *(*(* a[N])())();Can somebody explain this for me? How to read this?
0 votes
1 answer
3457
0 votes
1 answer
3459
ugc