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
1 answer
2701
1 votes
1 answer
2702
0 votes
1 answer
2703
char *p;*p='a' ;I know this will give compiler error but can anyone explain what is the actual bug in this and how to rectify it??
0 votes
3 answers
2704
#include <stdio.h>int main(void){ void *vp; char ch='g'; char *cp="goofy"; int j=20; vp=&ch; printf("%c",*(char *)vp); vp=&j; printf("%d",...
1 votes
1 answer
2705
#include <stdio.h>int main(void){ int i; char *p=(char *)&i; ++p; (*p)=2; printf("%d",i); return 0;}
1 votes
1 answer
2707
A condition that is caused by run time error in a computer program is known as a)Fault b)Exceptionc)Syntax errord)Semantic error
0 votes
1 answer
2708
In a 16-bit machine Size of Int Size of pointer are same ? What I knew is 8bit = 1BChar will take - 1 BInt - 2B if integer pointer size is p then size of flot / double ...
0 votes
1 answer
2710
what is meant bywhich constructs will you not include in a programming language such that it should be possible to program the terminates (i.e., halting) function in the ...
3 votes
1 answer
2711
Cosider the code snippetCODE 1float a= 10.25; if(a==10.25) ptint " A " else print "B" print "C"CODE 2float a =10.25; n=15.25; while(n!=10.25) { print "*"; n ; } Number of...
1 votes
1 answer
2712
If the graph G(V,E) is represented using adjacency matrix then to find universal sink (in degree is V-1 and out degree is 0)
1 votes
1 answer
2713
In hash function using linear probing to reduce collision, the number of probes required to insert an item is identical with number of probes needed to retrieve it.is it ...
0 votes
1 answer
2715
9 votes
2 answers
2716
The number of min heap trees are possible with 13 elements such that every leaf node must be greater than all non-leaf nodes of the tree are ___A. 627B. 747C. 657D. 757
0 votes
1 answer
2717
0 votes
1 answer
2718
How to store ASCII value of a characters in c?Example:main(){char CH='A';printf("%d",CH );return 0;}I want to store this o/p in a variable.