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}}}$$

Hot questions in Programming

1 votes
2 answers
1471
13. What does the error "Null Pointer Assignment" mean and what causes this error?
0 votes
1 answer
1473
Consider a C Program situation like this, main() { float a=2.23564; printf("%d",a); }Then what will be the output??please help me..
0 votes
0 answers
1474
0 votes
1 answer
1475
1 votes
0 answers
1476
am i right ??
0 votes
0 answers
1477
A ds is reqd. For storing a set of integers such that each of the following operations can be done in O (logN) time where N is the no. Of elements in the setDeletion of s...
0 votes
1 answer
1479
0 votes
0 answers
1480
0 votes
1 answer
1481
https://gateoverflow.in/39667/gate2016-1-10in this question we are using array so both operations are taking constant only becz of in array random access is possible so d...
0 votes
1 answer
1482
int *I ,j;I =&j; why it is valid since j has not been defined so no memory will be allocated to j and I is having the address of J so it must saw segmentation fault
0 votes
2 answers
1483
Why not Output is showing 90? #include <stdio.h int main() { extern int p; printf("%d ", p); { int p = 90; printf("%d ", p); } }
0 votes
3 answers
1484
4. Which of the following is not a valid variable name declaration and why?a) float PI = 3.14;b) double PI = 3.14;c) int PI = 3.14;d) #define PI 3.14
0 votes
1 answer
1485
#define swap(a,b)a=a+b;b=a-b;a=a-b;void main(){int x=5,y=10;swap(x,y);printf("%d,%d",x,y);}Will the output be 10 5 or 5 10?
0 votes
2 answers
1487
0 votes
2 answers
1488
#include<iostream>using namespace std;int main(){ int a[] = {10,20,30,40,50}; cout<<(*(&a+1)-a); return 0;}how th o/p is 5 ??
1 votes
2 answers
1489
#include <stdio.h>void f(char );int main(){char *argv[] = { "ab", "cd", "ef", "gh", "ij", "kl" };f(argv);return 0;}void f(char p){char *t;t = (p += sizeof(int))[-1];prin...