online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#include <stdio.h> int main() { // Deklaration int a[10][10], z, s; // Init for (z=0; z<10; z++) { for (s=0; s<10; s++) { a[z][s] = z*10 + s; } } // Ausgabe for (z=0; z<10; z++) { for (s=0; s<10; s++) { printf("%d\t", a[z][s]); } printf("\r\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