closed by
268 views

Related questions

0 votes
0 votes
0 answers
1
Nishi Agarwal asked Mar 10, 2019
512 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
2
CJ147 asked Oct 11, 2018
632 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...
0 votes
0 votes
1 answer
3
iita asked Dec 15, 2016
298 views