online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#include <stdio.h> int main(){ int a = 1234; //최소 너비 8칸 출력 printf("[%d]\n", a); printf("[%8d]\n", a); printf("[%-8d]\n", a); printf("[%+8d]\n", a); printf("[%08d]\n", a); printf("[%+08d]\n", a); char b = 'A'; double c = 3.14159; printf("[%c]\n", b); printf("[%8c]\n", b); printf("[%-8c]\n", b); printf("[%f]\n", c); printf("[%8.3f]\n", c); printf("[%-8.3f]\n", c); printf("[%+8.3f]\n", c); printf("[%08.3f]\n", c); printf("[%+08.3f]\n", c); }

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