online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#include <iostream> #include <iomanip> using namespace std; int main() { int x = 0x12dc34f2; int *pix = &x; unsigned char *pcx; pcx = reinterpret_cast<unsigned char *> (pix); cout << hex << x << " = " << static_cast<unsigned int> (pcx[0]) << ", " << static_cast<unsigned int> (pcx[1]) << ", " << static_cast<unsigned int> (pcx[2]) << ", " << static_cast<unsigned int> (pcx[3]) << endl; 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