C Online IDE & Code Editor for Technical Interviews
Running GCC 8.4 (C17) - IntelliSense is enabled
Experience our C IDE yourself
See just how easy and intuitive CoderPad Interview is to use below.
Guidelines to use C in this online IDE
The gcc compiler is invoked with the following args:
gcc -g -fsanitize=address -std=c17 -Wall -fdiagnostics-color -pthread -lm
Which will:
- Use the C17 standard
- Turn on all warning messages
- Compile in debug mode
- Warn on memory use-after-free bugs and other memory issues
- Link the pthread and math libraries
You should define an int main()
entrypoint.