online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#include <iostream> #include<map> #include<string> #include<vector> class Point { int x, y; public: Point (int px, int py){ x = px; y = py; } //default constructor Point(): x(0), y(0){ } }; class Rect { Point top_left; Point bottom_right; public: Rect (Point p1, Point p2){ top_left = p1; bottom_right = p2; } }; int main() { 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