online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
d = { "one": 1, "two": 2, "three": 3 } import sys def get_size(obj): return sys.getsizeof(obj) print("d - without modification: ") print(d) print(get_size(d)) print("d - after deletion of two: ") del d["two"] print(d) print(get_size(d)) print("d - after adding two_copy key: ") d["two_copy"] = 2 print(d) print(get_size(d)) print("d - after adding few values modification: ") d["three_copy"] = 3 d["four"] = 4 print(d) print(get_size(d)) import copy d1 = copy.deepcopy(d) print("d1 - after deepcopy of d: ") print(d1) print(get_size(d1))
b0VIM 7.4rrunner11Check/home/ 3210#"! Utpadßÿÿ

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