online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#include <iostream> #include <iomanip> using namespace std; int main() { cout<<8<<endl; //Sin formato cout<<985<<endl; //Sin formato cout<<setw(8)<<8<<endl; //Uso de setw(n) cout<<setw(8)<<985<<endl; //Uso de setw(n) cout<<985.0/8<<endl; //Sin formato cout<<fixed<<985.0/8<<endl; //Uso de fixed cout<<setw(15)<<fixed<<985.0/8<<endl; //Uso de setw(n) y fixed 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