online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code    Language
/****************************************************************************** Online Java Debugger. Code, Run and Debug Java program online. Write your code in this editor and press "Debug" button to debug program. *******************************************************************************/ public class Main { public static void main(String[] args) { int[][] JaggedArray = new int[3][]; JaggedArray[0] = new int[] {1, 2, 3}; JaggedArray[1] = new int[] {4, 5, 6}; JaggedArray[2] = new int[] {7, 8, 9}; //to print it's first the which array in the jagged array then the n-th element of the array; //[0][0] = 1, [0][1] = 2 [0][2] = 3 etc; System.out.println(JaggedArray[1][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