online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code    Language
#include <iostream> using namespace std; //Recall the functions from all the way down (More readable) bakePizza(); bakePizza(string topping_1); bakePizza(string topping_1, string topping_2); bakePizza(string topping_1, string topping_2, string topping_3); int main() { bakePizza(); return 0; } //Functions (Pizza Baking/Overloaded functions) void bakePizza() { cout << "Here is your well baked pizza!"; } void bakePizza(string topping_1) { cout << "Here is your well baked " << topping_1 << " pizza!"; } void bakePizza(string topping_1, string toping_2) { cout << "Here is your well baked " << topping_1 << " " << topping_2 << "pizza!"; } void bakePizza(string topping_1, string topping_2, string topping_3) { cout << "Here your well baked " << topping_1 << " " << topping_2 << " " << topping_3 << " pizza!"; }

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