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

1 votes
1 answer
1561
1 votes
0 answers
1562
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...
0 votes
2 answers
1566
#define int charmain(){int i=66;printf("%d",sizeof(i));}
0 votes
1 answer
1569
All four are correct i think.Then why option c is false?In place of ac and av ,argc and argv should be used.and this is true.
1 votes
1 answer
1570
How C will behave with negative operands with modulus  operator?
1 votes
1 answer
1571
1 votes
1 answer
1573
How tokens are assigned for a string having escape sequence in C lexical phaseEg..printf ("this\" is a string\"");and what forprintf ("this is""a string");
2 votes
0 answers
1574
Inside a program loopif we write*ch1++it will give "lvalue required" errorbut without any loop if we write even++*ch1++;it will not give any lvalue error. Why?
0 votes
2 answers
1575
0 votes
1 answer
1576
// C program to illustrate sizes of// pointer of array#include<stdio.h>int main(){ int arr[] = { 3, 5, 6, 7, 9 }; int *p = arr; printf("p = %p\n", p); pr...
2 votes
2 answers
1578
Consider the following code given below int A[8][8], p, q; for(p = 0; p < 8; ++p) for(q = 0; q < 8; q++) { A[p][q] = A[q][p]; }What will happen to matrix A ?
0 votes
1 answer
1579