online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
/****************************************************************************** Exibir uma tabela (array[4][4]) utilizando dois laços com for() Diego Mendes Rodrigues *******************************************************************************/ #include <stdio.h> int main() { int valores[4][4] = { {1, 4, 29, 20}, {32, 9, 12, 24}, {2, 49, 7, 11}, {5, 6, 13, 19} }; int linha, coluna; for(linha=0;linha<4;linha++) { for(coluna=0;coluna<4;coluna++) { printf("%d ", valores[linha][coluna]); } printf("\n"); } 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