online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
/****************************************************************************** Welcome to code of Lập trình - Điện tử Series: C Author: Nghĩa Taarabt *******************************************************************************/ #include <stdio.h> int main() { int a = 5, b = 3; printf("a == b: %d\n", a == b); // 0 (false) printf("a != b: %d\n", a != b); // 1 (true) printf("a > b: %d\n", a > b); // 1 (true) printf("a < b: %d\n", a < b); // 0 (false) printf("a >= b: %d\n", a >= b); // 1 (true) printf("a <= b: %d\n", a <= b); // 0 (false) // Sử dụng trong điều kiện if (a > b) { printf("%d lớn hơn %d\n", a, b); // In: 5 lớn hơn 3 } 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