online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#include <iostream> #include<map> #include<string> #include<vector> using namespace std; class Person { std::string mname; int mage; public: //Person() = default; Person(const std::string& name, int age) :mname{ name }, mage{ age }{} }; class Employee :virtual public Person { int msalary; public: Employee(const std::string& name, int age, int sal) :Person{ name,age }, msalary{ sal }{} Employee(int sal): msalary { sal }{} }; 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