online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code    Language
#include <stdio.h> #include <conio.h> int main() { int a[5],b[5],c[5]; int i=0; printf("\nEnter Elements For First Array="); for (i=0;i<=4;i++) { printf("\nEnter Number="); scanf("%d",a[i]); } printf("\nEnter Elements For Second Array="); for (i=0;i<=4;i++) { printf("\nEnter Number="); scanf("%d",b[i]); } c[i]=a[i]+b[i]; printf("Addition Stored in third Array="); for (i=0;i<=4;i++) { printf("\nc[%d]=%d",i,c[i]); } 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