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

Recent questions in Programming

6 votes
3 answers
3362
A one dimensional array A has indices 1....75. Each element is a string and takes up three memory words. The array is stored at location 1120 decimal. The starting addres...
0 votes
1 answer
3363
void main() { int i=100,j=10,k; int *p=&j; k=i/(*p); printf("%d",k); }OPTIONS : [ a] 0 [b] 10 [c] 100 [d] None of the above
0 votes
1 answer
3364
0 votes
1 answer
3365
int main(){ static int arr[20]; int x=0; arr[x] = x++; printf("\n %d %d %d", arr[0],arr ,x); }OPTIONS :A) 000b) 101c) 001D) can't say
0 votes
1 answer
3366
main(){ int i=400,j=300; printf("%d..%d"); }OPTIONS :
0 votes
2 answers
3367
int main(){ int x=5,y; x++; printf("x=%d\n",x); y=x= ++x+10/x; printf("new x= %d",x); }OPTIONS :
0 votes
1 answer
3368
why we can not have storage classes identifier in argumentsand what is actual arguments/formal arguments/paramater etc
1 votes
1 answer
3369
Assume that there are two lower triangular matrices A and B of size n*n. If matrix A and transpose of B are fit into a rectangular matrix C of size n*(n+1), thena) B[i,j]...
0 votes
0 answers
3370
In which file the compiler manage thevarious objects, which are used inwindows programming ?(A) Control File(B) Binary File(C) Text File(D) Obj File
1 votes
1 answer
3376
0 votes
2 answers
3377
Use of triple pointer ?
4 votes
2 answers
3378
The information about an array used in program will be stored inSymbol TableActivation RecordBoth (A) and (B)Dope Vector
1 votes
1 answer
3379
is there any data types like long floatbecause i saw somewhere in let us c long float i=232.34e24.then i try to run this program and with this statement the program succe...
1 votes
1 answer
3380
unsigned int i=-1;unsigned int have range 0 to 65,535 but what happen if we insert -1.