online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
/*************************************************************** * Name: Rafael Orta * Course: Computer Science & Programming * Class: CS04103 * Assignment Date: 09/05/18 * File Name: SpecialCharacters.cpp ***************************************************************** * ID: Lect Chapter 2 * Purpose: Demonstrate the use of the basic special characters in C++ *****************************************************************/ #include <iostream> using namespace std; int main() { //const int x=5; int VariableName = 10; cout << "**** Demonstration of Carriage return (r) and newline (n) ****" << endl; cout << "Test\r"; cin.get(); cout << "\n**** Demonstration of backspace (b) ****" << endl; cout << "I\bTest" << endl; cout << "\n**** Demonstration of tab (t) ****" << endl; cout << "Test\tTest" << endl; cout << "\n**** Demonstration of (backslash) ****" << endl; cout << "How to display backslash: \\" << endl; cout << "\n**** Demonstration of memory address ****" << endl; cout << "The Value of VariableName is: " << VariableName << " and it is stored in the memlory location " << &VariableName << endl; 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