online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code    Language
// Example program #include <iostream> #include <string> int main() { std::string name; int shiftA = 3; int shiftB = 5; shiftB = shiftB >> shiftA; std::cout << shiftB ; std::cout << '\n'; int andA = 3; int andB = 555; andB = andB & andA; std::cout << andB; std::cout << '\n'; int orExA = 3; int orExB = 5; orExB = orExB ^ orExA; std::cout << orExB; std::cout << '\n'; int orInA = 3; int orInB = 5; orInB = orInB | orInA; std::cout << orInB; std::cout << '\n'; }

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