online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code    Language
#include <stdio.h> enum {POSITION,VELOCITY}; typedef struct { int x, y; } Position; typedef struct { double x, y; } Velocity; void P(Position*p){printf("Position %d %d\n",p->x,p->y);} void V(Velocity*v){printf("Velocity %f %f\n",v->x,v->y);} void (*func[])(void*)={P,V}; int main() { Position p={1,2}; Velocity v={3,4}; func[POSITION](&p); func[VELOCITY](&v); 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