Skip to content
Introduction to C Programming - By Rob Miles
This is an apt book for someone who is new to the programming world and wants to learn C.
Table of content
- Computers
- Programming Languages - examines what is programming, and a brief examination of programming languages
- C - looks at the advantages and disadvantages of C
- A First C Program - making C run, creating C programs, what comprises a C program, the advantages and disadvantages of C
- Variables - looks at types of variables, declaration (int, float, char variables, missing types), variable declaration, giving values to variables, and getting values into the program
- Writing a Program
- Functions - identified by name and can return a single value. They act on parameters, which are used to pass information into them. In our case we want a function which is given the maximum and minimum values which something can have, and returns a value in that range
- Arrays - explains why arrays are needed, array types and sizes
- Switching - making multiple decisions
- Strings - computer jargon for lumps of text
- Structures - explains what is a structure, how they work, pointers to structures, and defining your own types
0 comments:
Post a Comment