online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code    Language
#include <stdio.h> #include <string.h> #include <math.h> #include <stdlib.h> void vowels(char x[100]){ for(int i=0; x[i]; i++){ if(x[i]>32 && x[i]<=47||x[i]>=58 && x[i]<=64||x[i]>=91 && x[i]<=96||x[i]>=123 && x[i]<=126) printf("%c",x[i]); } } int main() { char x[100]; scanf("%s",x); vowels(x); 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