online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#include <stdio.h> int main(void) { // poniższa pętla się wykona for (int i = 1; i <= 10; i++) { if (i % 2 == 0) { printf("Liczba %d jest parzysta!\n", i); continue; } printf("Liczba %d jest nieparzysta!\n", i); } // poniższa pętla będzie wykonywać się nieskończenie dla i == 2 // int i = 1; // while (i <= 10) { // if (i % 2 == 0) { // printf("Liczba %d jest parzysta!\n", i); // continue; // } // printf("Liczba %d jest nieparzysta!\n", i); // 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