online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#include <stdio.h> #define PI 3.14159 int main(){ float radius ,aera, circumfrence; //input radius form the user printf("Enter the redius of the circle : "); scanf("%f", &radius); //calculate area of the circle aera = PI * radius * radius ; //calculate circumfrence of the circle circumfrence = 2 * PI *radius; //display result printf("Area of the cycle : %2.f\n",aera); printf("circumfrence of the circle: %2.f\n", circumfrence); 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