Hot questions in Programming and DS

1 votes
0 answers
2191
i, j; int;void P(x:int){printf(x+10);i=10;j=20;printf(x);}void main(){i=50;j=60;P(i+j);} o/p =call by name=call by text=call by need=
0 votes
0 answers
2192
0 votes
0 answers
2193
0 votes
0 answers
2194
Can someone explain how value of i is evaluted step by step
0 votes
0 answers
2195
Can someone explain how %x works below and how we can write an operation in ths statement.
0 votes
1 answer
2196
what is the difference between printf(“\nI am don”) and printf(“%s”, I am don);
2 votes
1 answer
2198
please explain the memory allocation of statement , means how it worksregister int a= 10;
0 votes
0 answers
2199
Are questions other than C Language a part of Gate19 syllabus?I found questions - Based on C++- Concepts of OOP- Language and there characteristic matchingand many others...
2 votes
1 answer
2200
Is it possible to construct multiple binary from given preorder and postorder?
0 votes
0 answers
2202
No. Of unlabeled binary tree possible with n nodes
0 votes
0 answers
2203
0 votes
2 answers
2204
What is o/p printed when i/p is =1 2 3
0 votes
0 answers
2205
Can we declare a variable in main() which we will be using in another function? And why?
1 votes
1 answer
2206
1 votes
1 answer
2207
0 votes
1 answer
2208
question has something wrong or is any logic i dont know please verify??
0 votes
1 answer
2209
1 votes
1 answer
2210
Explain the outputMain(){ char *s= "%d\n"; s++; s++; printf(s-2,300);}