how to compile c files on windows code example
Example 1: compile c file in command prompt windows
cl program.c
Example 2: how to compile c code to a .so
gcc -shared -o libhello.so -fPIC hello.c
cl program.c
gcc -shared -o libhello.so -fPIC hello.c