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{2024-1}&\textbf{2024-2}&\textbf{2023}& \textbf{2022}&\textbf{2021-1}&\textbf{2021-2}&\textbf{Minimum}&\textbf{Average}&\textbf{Maximum}
\\\hline\textbf{1 Mark Count} & 2&2&1&1 &0&2&0&1.33&2
\\\hline\textbf{2 Marks Count} &1&1&0& 2&2&2&0&1.33&2
\\\hline\textbf{Total Marks} &4&4&1& 5&4&6&\bf{1}&\bf{4}&\bf{6}\\\hline
\end{array}}}$$

Most answered questions in Programming

0 votes
0 answers
3681
how to solve this?
1 votes
0 answers
3683
0 votes
0 answers
3684
0 votes
0 answers
3687
0 votes
0 answers
3688
0 votes
0 answers
3689
If pointer to leaf node of binary heap given, what is the time complexity to find smallest element?
0 votes
0 answers
3691
#include <IOStream.H>void print(char c){*c="MY MY";}void main(){char *p="YOUR";print(&p);cout<<p;}(a) YOUR (b) NULL String(c) MY MY (d) No Output-error
2 votes
0 answers
3692
Which three are valid declarations of a char?1. char c1 = 064770;2. char c2 = face’;3. char c3 = 0xbeef;4. char c4 = \u0022;5. char c5 = \iface’;6. char c6 = ‘\uf...
0 votes
0 answers
3693
https://gateoverflow.in/2124/gate2011_22
2 votes
0 answers
3694
main() { int p=5, *q; void*r; q=&p; r=&p; r++; print(“%v", r); }
0 votes
0 answers
3695
What is a foo() function and what does it mean ? and how and when it is implemented ?
–1 votes
0 answers
3696
1 votes
0 answers
3697
The minimum size that an array may require to store a binary tree with n nodes(A) 2celi(log2(n+1))-1(B)2n-1(C)2n-n+1(D)n+1answer given by them is option A. but I think it...
2 votes
0 answers
3698
Plz. explain the difference between these two codes,Running it on different compiler i find some output but i don't know the reson 1. main() { int i; for(i=0,i<54,i++) in...
–1 votes
0 answers
3699
Explaiin the working of printf() and scanf for different cases that could depict the complete picture of printf() and scanf()?
0 votes
0 answers
3700
#include<stdio.h>int main(void){char a[50];printf(" %d", scanf("%s", a));getchar();}What will be the output and explain its working?