tailieunhanh - C++ Essentials Sharam Hekmat

The objective of this book is to teach the skills necessary to program in Objective-C using a style that is easy to follow, rich in examples and accessible to those who have never used Objective-C before. Topics covered include the fundamentals of Objective-C such as variables, looping and flow control. Also included are details of object oriented programming, working with files and memory and the Objective-C Foundation framework. | C Essentials Sharam Hekmat PragSoft Corporation Contents Contents v Preface x 1. Preliminaries 1 A Simple C Program 2 Compiling a Simple C Program 3 How C Compilation Works 4 Variables 5 Simple Input Output 7 Comments 9 Memory 10 Integer Numbers 11 Real Numbers 12 Characters 13 Strings 14 Names 15 Exercises 16 2. Expressions 17 Arithmetic Operators 18 Relational Operators 19 Logical Operators 20 Bitwise Operators 21 Increment Decrement Operators 22 Assignment Operator 23 Conditional Operator 24 Comma Operator 25 The sizeof Operator 26 Operator Precedence 27 Simple Type Conversion 28 Exercises 29 Contents