online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
from Employee import Employee emp1=Employee("Bill Yeakus",50000) emp2=Employee("Sally Smith",75000) emp3=Employee("Joan Jones",66000) emp1.displayEmployee()
class Employee: 'Common base class for all employees' empCount = 0 def __init__(self, name, salary): self.name = name self.salary = salary Employee.empCount += 1 def displayCount(self): print("Total Employees", Employee.empCount) def displayEmployee(self): print("Name : ", self.name, ", Salary: ", self.salary)

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