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

Recent questions in Programming

#1221
532
views
1 answers
0 votes
#1222
1.7k
views
2 answers
3 votes
int main(){ char arr[5][7][6]; char (*p)[5][7][6] = &arr; /* Hint: &arr - is of type const pointer to an array of ... how output is calculated in all the printf statements and what difference 'unsigned' is making to the output.
#1223
3.0k
views
2 answers
0 votes
Consider the following C programstruct treenode { int data; struct treenode *left; struct treenode *right; } int gate2015(struct treenode *root) { int gate; if(root==NULL ... tree, then what is the output ?I m getting $47$ - match it please
#1224
1.5k
views
1 answers
0 votes
It is not any gate question but just my doubt over the topic C programming?Ques:- What will be the output of the following program?void main(){ ... give explanation also for your answer.(Please tell what was your approach in this answer)
#1225
244
views
2 answers
1 votes
#1226
2.1k
views
1 answers
2 votes
WHICH OF THE FOLLOWING IS THE BEST CHOICE AS $m$ IN THE HASH FUNCTION $h(k)=k \mod m$??$61$701$81$answer is given as $701$ but how??
#1227
355
views
1 answers
0 votes
#1228
629
views
2 answers
0 votes
How far is Defining a function and macro related with each other?
#1229
466
views
0 answers
0 votes
You are given an array of N integers, A1, A2 , , AN. Return maximum value of f(i, j) for all 1 ≤ i, j ≤ N.f(i, j) is defined as |A[i] ... - 3| = 5 So, we return 5. Source - https://www.interviewbit.com/problems/maximum-absolute-difference/
#1230
246
views
1 answers
0 votes
What is meaning of Underline Text??
#1231
304
views
1 answers
0 votes
I think ans is C(index start with 0)
#1232
161
views
1 answers
0 votes
What is meaning of underline ??
#1233
222
views
1 answers
0 votes
The value of the postfix expression 10,8,4,+,-,5,12,3,/,+,4,+,* is_________________.i think ans is -26. correct me if i wrong.but given ans is +26 .
#1234
285
views
1 answers
0 votes
Array declared by Const can change??please tell me why Option C is wrong..
#1235
245
views
2 answers
0 votes
how we can identify the segmentation fault??
#1236
349
views
1 answers
0 votes
#include <stdio.h> int make_it(int *x,int *y, int *z){ *x *= *y+*z; *y=*x<<1; *z=*x+*y; } int main(void) { int a=5, b=10; printf("%d%d",a,b); make_it(&b,&a,&(a+b)); printf("%d%d",a,b); return 0; }Why this code is giving lvalue error?
#1237
324
views
0 answers
0 votes
I want some information about the programming language java.What is java?what are the features of java?And what are the structure of java program and compare ... service is helping to get the genuine essay? Is this service is beneficial?
#1238
936
views
2 answers
2 votes
#include <stdio.h> int main(void) { int a=5, b=10; printf("%d%d",a,b); make_it(b,a,a+b); printf("%d%d",a,b); return 0; } int make_it(int x,int y, int z){ x*=y+z; y=x<<1; z=x+y; }
#1239
595
views
3 answers
0 votes
if x=y=z=-1then the values of x,y,z after++x && ++y ||++z is shown as x=0,y=-1, and z=0 Please explain the reason behind this as I am not getting the reason of z=0.
#1240
718
views
2 answers
0 votes