Objective-C is the language of native iOS develoment. Objective-C is a strict superset of the C language. C was developed in the early 70s as a "portable assembler." It is a relatively small, simple language that exposes much of how the computer actually works. There are a few implications of being a strict superset of the C language
Objective-C takes the C language as is, using the same syntax for functions, variables and flow control while adding it's own syntax for dynamic object oriented programing. We'll begin by studying these features