online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
/*************************************************************** * Name: Rafael Orta * Course: Computer Science & Programming * Class: CS04103 Section: 6 * Assignment Date: 10/10/21 * File Name: Stubs.cpp ***************************************************************** * Purpose: This program demonstrate the use of stubs *****************************************************************/ #include <iostream> using namespace std; void displayMainMenu(); void reservation(); int main() { int choice = 0; displayMainMenu (); cout << "please selet the operation to perform: "; cin >> choice; switch (choice) { case 1 : reservation(); break; return 0; } } void displayMainMenu () // stub function { cout << "Main menu Display" << endl; } void reservation() // stub function { cout << "Making a reservation"; }

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