online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#include <stdio.h> #include <string.h> #include <unistd.h> int main () { const char spinningCursor[] = "/-\\|"; const char message[] = "Greetings from the Sub-Etha."; for (unsigned int pos = 0; pos < strlen (message); pos++) { for (unsigned int idx = 0; idx < sizeof (spinningCursor) - 1; idx++) { putchar (spinningCursor[idx]); fflush (stdout); usleep (50000); putchar ('\b'); } putchar (message[pos]); } return 0; } // End of file.c

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