Compiling a C program

gcc simple.cgcc is the gnu c-compiler. It will translate simple.c into an executable. The default name for the executable is a.out.gcc -o simple simple.c will create the executable with the name simple. Per default the C-runtime library is also linked during the translation process. ./a.out or ./simple will produce the expected output: local = 0 value = 0.420000