online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
public class Main { // Method to print the 5x4 rows of stars public static void starBanner() { for(int row = 0; row < 4; row++) { for(int col = 0; col <5; col++) { System.out.print("*"); } System.out.println(""); } } //Main method to execute starBanner public static void main(String[] args) { starBanner(); } }

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