beginners-C-program-examples
beginners-C-program-examples copied to clipboard
Simple, Short and Sweet beginners friendly C language programs , revised.
Beginners C Program Examples
Compared to upstream repository , many source files are revised. Please help me to improve the codes if you want.
Reference site
One of the C reference sites that I trust is this one.
Book
There are several recommended books on C. First one is called K&R.
Linux compile
gcc
gcc -Wall -Wextra -pedantic -lm -std=c11 file_name.c
executing in the same directory
./a.out
Windows compile
Free and capable compilers are LLVM Clang and mingw.
IDE
There are many IDEs available. Code::Blocks is free , open source , multi platform. You may search for more and choose what suits you.
