SIGN IN SIGN UP
cs01 / gdbgui UNCLAIMED

Browser-based frontend to gdb (gnu debugger). Add breakpoints, view the stack, visualize data structures, and more in C, C++, Go, Rust, and Fortran. Run gdbgui from the terminal and a new tab will open in your browser.

0 0 0 TypeScript
#include <math.h> /* sin */
int main ()
{
double angle = 0, result = 0;
static const double RAD_TO_DEG = 3.14159265 / 180;
while (angle <= 360){
result = sin(angle * RAD_TO_DEG);
angle += 20;
}
return 0;
}