online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code    Language
/****************************************************************************** Welcome to GDB Online. GDB online is an online compiler and debugger tool for C, C++, Python, PHP, Ruby, C#, VB, Perl, Swift, Prolog, Javascript, Pascal, HTML, CSS, JS Code, Compile, Run and Debug online from anywhere in world. *******************************************************************************/ using System; namespace Tester { class test { // What Pow actually does: static double logPow(double x, int y) { var old = x; for (var i = 0; i < y; i++){ x = old * x; } return x; } static int counter = 0; static double Pow(double x, int y) { counter++; Console.Write("Recursive action[" + counter + "] Y status ["+ y +"] : "); if (y == 0) { Console.Write("return 1.0 = " + logPow(x, y) + " \n"); return 1.0; } else { Console.Write("return " + x + " * Pow(" + x + ", " + y + " - 1) = " + logPow(x,y-1) + " \n"); return x * Pow(x, y - 1); } } static void Main() { Console.Write("Last Result : " + Pow(2, 5)); } } }

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