online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
/****************************************************************************** Online C# Compiler. Code, Compile, Run and Debug C# program online. Write your code in this editor and press "Run" button to execute it. *******************************************************************************/ using System; class JogoDaVelha { static void Main() { char[,] tabuleiro = new char[3,3]; tabuleiro[0, 0] = 'X'; tabuleiro[1, 0] = '.'; tabuleiro[2, 0] = 'O'; tabuleiro[0, 1] = 'X'; tabuleiro[1, 1] = 'X'; tabuleiro[2, 1] = 'O'; tabuleiro[0, 2] = '.'; tabuleiro[1, 2] = 'O'; tabuleiro[2, 2] = 'X'; for (int linha = 0; linha <= tabuleiro.GetUpperBound(0); linha++) { for (int coluna = 0; coluna <= tabuleiro.GetUpperBound(1); coluna++) { Console.Write(tabuleiro[linha, coluna]); } Console.WriteLine(); } } }

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