online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#include <cstdint> #include <iostream> union example { uint32_t fullValue; struct { unsigned sixteen1: 16; unsigned sixteen2: 16; }; struct { unsigned three: 3; unsigned twentynine: 29; }; }; int main(){ example e; e.fullValue = 12345678; std::cout << e.sixteen1 << ' ' << e.sixteen2 << ' ' << e.three << ' ' << e.twentynine; 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