online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
/****************************************************************************** Welcome to GDB Online. GDB online is an online compiler and debugger tool for C, C++, Python, Java, PHP, Ruby, Perl, C#, OCaml, VB, Swift, Pascal, Fortran, Haskell, Objective-C, Assembly, HTML, CSS, JS, SQLite, Prolog. Code, Compile, Run and Debug online from anywhere in world. *******************************************************************************/ #include <stdio.h> int main() { int num = 10; printf("num λ³€μˆ˜μ˜ 초기 μƒνƒœ κ°’: %d\n",num); num+=5; printf("num+=5 μ—°μ‚° ν›„: %d\n",num); num-=3; printf("num-=3 μ—°μ‚° ν›„: %d\n",num); num*=4; printf("num*=4 μ—°μ‚° ν›„: %d\n",num); num/=2; printf("num/=2 μ—°μ‚° ν›„: %d\n",num); num%=7; printf("num%=7 μ—°μ‚° ν›„: %d\n",num); num<<=3; printf("num<<=1 μ—°μ‚° ν›„: %d\n",num); //2의 num승 만큼 곱해짐 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