A C++ Program to computes the n_th term of the fibonacci series using Divide and Conquer Strategy. Code : # include # include //------------------------ Function rototypes ------------------------// const long fibonacci(const int); //----------------------------- main( ) -------------------------------// int main() { clrscr( ); int number; cout<<" Enter the number ( 1 - 25 ) = "; cin>>number; number=((number>25)?25:number); cout<<" The "<