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
0 answers
3541
0 votes
0 answers
3542
My doubt is very basic, I want to understand what is the use of signed and unsigned used with integer.?2.what does size of signed int (-128 to 127) signify?3how to big en...
0 votes
2 answers
3543
Consider A be a 2-dimensional array declared as follows: A[15] [15] of integers. Assume each integer take 1B. The array stored in row major order and first element of arr...
2 votes
0 answers
3544
0 votes
0 answers
3545
I m nt able to understand the question
1 votes
0 answers
3546
0 votes
0 answers
3547
The number of possible ordered trees with 3 nodes A,B and C?
1 votes
1 answer
3548
1 votes
0 answers
3550
0 votes
0 answers
3551
Is this pattern ques. Correct ? What will be the code to print it using c?AABABCABCDABCDEBBBBCCBBCCDDBBCCDDEECCCCCCDDDCCCDDDEEEDDDDDDDDEEEEEEEEE
0 votes
0 answers
3552
void strfind( char dest[], char src[] ){int i=0;while ((dest [i] = src[i]) != '\0')i++;printf("%s, %s", dest, src);}main(){ char A[] = {'g', 'a', 't', 'e', '\0' }; ...
0 votes
0 answers
3553
0 votes
0 answers
3554
How does the array related expression in printf works #include <stdio.h int main(void) { // your code goes here int a[3][4] = { 1,2,3,4,5,6,7,8,9,10,11,12 }; printf("%u",...
1 votes
0 answers
3555
1 votes
0 answers
3557
0 votes
1 answer
3558
0 votes
0 answers
3559
3 votes
0 answers
3560
Illustration of this piece of code :