Computer Science, asked by kandikiran0831, 3 months ago

what will be the latest value of s after the execution of following statements int u=5,v=9,S=(u++)-(v--)+(++v);​

Answers

Answered by shashidubey1119
0

Answer:

//Fibonacci Series using Recursion

#include<bits/stdc++.h>

using namespace std;

  

int fib(int n)

{

    if (n <= 1)

        return n;

    return fib(n-1) + fib(n-2);

}

  

int main ()

{

    int n = 9;

    cout << fib(n);

    getchar();

Similar questions