229 views
0 votes
0 votes

Please log in or register to answer this question.

Related questions

0 votes
0 votes
1 answer
2
Ritwik asked May 18, 2017
271 views
Qn 70. Which of the data structure is not suitable for building a cache?(A) File(B) Linked List(C) Arrays(D) All of the above(E) None of the above
0 votes
0 votes
0 answers
3
Nishi Agarwal asked Mar 10, 2019
506 views
A(n){if(n<1) return (1);else return A(n-2)+B(n-1);}B(n){if(n<=1) return 1;else return B(n-1)+A(n-2);}
0 votes
0 votes
1 answer
4
CJ147 asked Oct 11, 2018
625 views
The Following code has output Gate2019 #include <stdio.h char* fun(){ char* temp = "Gate2019"; return temp; } int main(void) { // your code goes here puts(fun()); return...