online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#include <stdint.h> uint64_t seed; int get_random(int rand_min, int rand_max) { seed ^= seed <<13; seed ^= seed >>7; seed ^= seed <<17; return rand_min + (int)(seed % (rand_max-rand_min+1)); } void ready(int seeds) { seed = (uint64_t) seeds; }

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