online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code    Language
/****************************************************************************** Welcome to GDB Online. GDB online is an online compiler and debugger tool for C, C++, Python, Java, PHP, Ruby, Perl, C#, OCaml, VB, Swift, Pascal, Fortran, Haskell, Objective-C, Assembly, HTML, CSS, JS, SQLite, Prolog. Code, Compile, Run and Debug online from anywhere in world. *******************************************************************************/ #include <iostream> using namespace std; int fibonacci(int n) { if(n==0){return 0;} if(n==1){return 1;} else { return fibonacci(n-1)+fibonacci(n-2); } } int main() { int numero; cout<<"inserisci che numero di Fibonacci vuoi che ti calcoli "; cin>>numero; cout<<fibonacci(numero); cout<<endl<<endl; cout<<"la sequenza di numeri di Fibonacci da 0 a "<<numero<<" e' "; for(int i=0;i<=numero;i++) { cout<<fibonacci(i)<<endl; } }

Compiling Program...

Command line arguments:
Standard Input: Interactive Console Text
×

                

                

Program is not being debugged. Click "Debug" button to start program in debug mode.

#FunctionFile:Line
VariableValue
RegisterValue
ExpressionValue