online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#include <stdio.h> int main(void) { // definiujemy kolejno: // - licznik iteracji jako zmienną typu int o wartości 0 // - iterujemy tak długo, jak i jest mniejsze od 10 // - na koniec każdej iteracji zwiększamy wartość i o 1 for (int i = 0; i < 10; i++) { // wypisujemy tekst wraz z wartością licznika printf("Cześć. Iteracja nr %d\n", i); } // teraz iterujemy od tyłu for (int i = 10; i > 0; i--) { // wypisujemy tekst wraz z wartością licznika printf("Jeszcze raz. Iteracja nr %d\n", i); } 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