online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code    Language
#include <stdio.h> void fibbonio(int n){ int a=0,b=1; if(n==1) printf("0"); else{ printf("%d %d ",a,b); for(int i=0;i<(n-2);i++){ int c=a+b; printf("%d ",c); a=b; b=c; } } } int main() { int n; scanf("%d",&n); fibbonio(n); return 0; }

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