online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#include <stdio.h> #include <stdlib.h> char FunOne(char Wun[50], char Two[50]); int main() { char Wun[50], Two[50]; FunOne(Wun, Two); return 0; } char FunOne(char Wun[50], char Two[50]) { printf("please enter a name: "); fgets(Wun, 50, stdin); printf("please enter a occupation: "); fgets(Two, 50, stdin); printf("there was once a man named %s", Wun); printf("he lived in the UK and worked as a %s", Two); 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