online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code    Language
/****************************************************************************** Online C++ Compiler. Code, Compile, Run and Debug C++ program online. Write your code in this editor and press "Run" button to compile and execute it. *******************************************************************************/ #include <iostream> using namespace std; // \brief The state of a single joint position. Default value of the speed is the maximum it wil allow. struct JointPosition { /// \brief The degree to set the joint to. double degree = 0; /// \brief The max degrees per second it will allow during the move. double maxDegreesPerSecond = 0; }; /// \brief Struct containing all joint positions as degrees. struct JointPositions { JointPosition base; JointPosition shoulder; JointPosition elbow; JointPosition wrist; JointPosition gripper; JointPosition wristRotate; }; int main() { static const JointPositions pos = { {0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0} }; 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