In this chapter, we’ll review the C programming language. If you don’t already have a C development environment on your computer, you can download it, free of charge, from Microsoft. You can download their Microsoft Development Kit (SDK). Another way you can access C is by using Visual Studio. Again, a version of this can be downloaded.
C Program Format
Listing 2-1 is a simple C program which asks the user to enter a character, reads the character, and then prints it to the screen. We will use this to show the basic format of a C program. ...