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 answered questions in Programming

0 votes
4 answers
91
What will the following code fragment output: void fun(int *a, int b) { b++; a = a + 3; } void main() { int A[5] = {0,1,2,3,4}; fun(A, A ); printf(%d, A ); }
7 votes
4 answers
93
Consider a 2D array with elemnts stored in the form of lower triangular matrix.The elements must be crossed to read A[4,2] from the array [-6..................+8 , -6.......
2 votes
4 answers
94
Does C perform array out of bound checking? What is the output of the following program?int main() { int i; int arr[5] = {0}; for (i = 0; i <= 5; i++) printf("%d ", arr[i...
3 votes
4 answers
97
What is the difference between order and degree of a B-tree are they same or different
6 votes
4 answers
98
What is the output of the code? #include <stdio.h int main() { int a; printf("%d",scanf("%d",&a)); return 0; }$10$$9$$-1$An undefined behavior
2 votes
4 answers
99
char * a[] = "red shoes";How the space in string constant "red shoes" will be stored in 1-D array in memory?
8 votes
4 answers
100
What is the output of the following program?#include<stdio.h int tmp=20; main() { printf("%d", tmp); func(); printf("%d", tmp); } func() { static int tmp=10; printf("%d",...
2 votes
4 answers
101
#include <stdio.h int main() { unsigned char a = 5; a |= (1<<((sizeof(char)<<3)-1)); char b = a; printf("%d %d\n",b,a); printf("%u %u\n",b,a); }If the size of a char data...
3 votes
4 answers
102
2 votes
4 answers
103
output of program:void function(int); void main() { function(3); } void function(int num){ if(num>0) { function( num); printf("%d",num); function( num); } }will the argum...
0 votes
4 answers
104
1 votes
4 answers
106
The infix form of the following postfix form ‘P’will beP: 3 , 5 , 7 , – , 10 , + , 4 , / , /(a) 3 / 5 – 7 + 10 / 4 (b) (((3 + 5) – (7 / 10 ))/ 4)(c) (3 / (((5 �...
3 votes
4 answers
108
2 votes
4 answers
109
7 votes
4 answers
110