online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#include<stdio.h> #include<conio.h> void main( ) { int n,i,a[100],large; printf("Enter the number of elements:"); scanf("%d",&n); for(i=0;i<=n-1;i++) { printf("Enter a value:"); scanf("%d",&a[i]); } large=a[0]; for(i=1;i<=n-1;i++) { if(large<a[i]) large=a[i]; } printf("The largest number is %d",large); getch(); }

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