online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
/* Génesis M Ojeda Rosa COMP 3800 lenguaje COMP Conversión de dólares a pesos colombianos */ //imports library #include <stdio.h> //defines constants #define COLOMBIAN_DOLLARS 4215 int main() { double us_dollars, colombian_dollars; printf("Enter USD amount to convert: "); scanf("%lf", &us_dollars); colombian_dollars = COLOMBIAN_DOLLARS * us_dollars; printf("%.2f USD is %.2f Colombian Pesos.\n", us_dollars, colombian_dollars); 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