Lesson objectives:
- Understand what C is.
- Set up environment for programming in C.
- Understand how to use basic tools for programming in C.
Lesson
Understanding C:
C is widely considered the lowest-level programming language, after assembly language and machine code. What this means is that C focusses much more on operations that work out exactly as they look - the logic used in the language is very similar to what the computer actually does. This differs from higher-level languages where list manipulation might be an option, whereas in C, you specify exact operations over a range of computer memory addresses to manipulate data in a specific way. This can either make things more or less intuitive for a person - sometimes you get weird results due to data types, other times it can makes processes easier. Generally, however, C is viewed as being more difficult as you puzzle through the correct way to do certain things, and make sure you avoid dangerous syntax errors. However, knowing C is reward enough for the effort of learning the language - it is useful, flexible, and above all - very, very fast.
Setting up to program in C:
If you use a Linux or Macintosh computer, it will come with a C compiler built into the system. Linux comes with GCC (GNU Compiler Collection - previously GNU C Compiler), whereas MacOSX comes with Clang, a compiler that acts as a frontend to the LLVM compiler. It is highly recommended that you also download a development environment for these Operating Systems. Apple provides for MacOSX the Xcode software, but it takes up a lot of disk space, so if you don't have a lot to spare, consider alternatives. For Linux there are also plenty of environments. For both OSes, I would recommend using Sublime Text (Sublime Text 3)(note that Sublime Text doesn't allow compilation within the application itself). If you use Windows, installing a compiler can be a hassle. It is a good idea to install a development environment on Windows too - and it may come with a compiler attached to it!
Side note: compilers
A compiler is a piece of software which takes a number of files of source code (C code in this case) and converts into an executable file which you can run on your computer. Note that not every language is compiled - some are "interpreted" (read line-by-line as the code is executed), and some are a mix, using something called "bitcode" or "bytecode". The executable file produced by a compiler is in a language called machine code - normally a compiler also converts the code into assembly inbetween, while trying to "optimize" it (make it faster and take up less RAM).
The terminal:
The terminal is the main way a programmer interacts with a computer. On MacOSX, it is an app under the name "Terminal", and is also called "Terminal" on many Linux distros. On Windows, you can use "Command Prompt". Upon opening, you will see a prompt to enter a command. To enter a command, type in to the command and hit the Enter key. An important thing to take note of is the filesystem. Your computer only normally looks in the current directory for needed files. To change the current directory, you can use the cd command on MacOSX or Linux. You can use cd --help to get more info on doing this.
Compiling programs:
The way this is done will depend on how you are developing. If you are using a development environment then it may offer a way to compile within the app. However, it is impossible to cover all of this - just note that the option will normally fall under "Build" or "Compile". The command for compiling from the command line on MacOSX or Linux, however, can be covered. On Linux, simply use the gcc command, with the names of source files that are to be compiled into a single executable, and specify an output with the -o option (you should probably use a .o ending for this file on MacOSX, or .elf or .o on Linux). On MacOSX, you can use either gcc or clang to use the Clang compiler, as gcc is automatically symlinked to clang - meaning that both will actually execute Clang. The options are almost exactly the same for the two compilers, and the differences irrelevant for most purposes. It is a good idea to run the command gcc --help so that you can see a list of compiler options. You can also look online for more information.
Executing programs:
So, you've finished writing your first program and have just compiled it - what now? Well, you can now execute it of course! To do this from the terminal of MacOSX or Linux, simply type out the path to the file - eg. if it's in your Documents, type in ~/Documents/filename where filename is the name of the file. Alternatively, if the file is in the current directory your terminal is in (use cd --help to find out more), then use ./filename. Congratulations! You've now just executed your first program that you wrote!