online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
/* * This code link to gist: * https://gist.github.com/linxuil/44886178a2fbcf4063eb8b5618920340 */ #include "stdio.h" #include "stdint.h" uint8_t GlobalVar_g = 5; int32_t main (void) { printf ("1str - global:.........%d\n", GlobalVar_g); GeneralConfig_block: { printf ("2str - GeneralConfig:..%d\n", GlobalVar_g); } TimerConfig_block: { uint8_t GlobalVar_g = 77; printf ("3str - TimerConfig:...%d\n", GlobalVar_g); } printf ("4str - global:.........%d\n", GlobalVar_g); 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