C: C Programming Language - Learn C In 24 hours or less
*** Reading this book is like downloading new software into your brain! Get this C kindle book if you want to learn C! It all starts here ***
C Programming Language - Learn C In 24 Hours Or Less is a book for beginners to dive deep right into the language with examples. No prior knowledge of C required.
C is a very popular programming language and will continue to be so, however, programming can be overwhelming. This book brings you a concise, straight to the point, easy to follow code examples with screenshots so you can begin coding in 24 hours or less. Invest in yourself, practice programming in C and you will be a C programmer in no time.
Here are some topics of what you'll learn inside:
Table of Contents
Chapter 1 – The C Programming Language Introduction Data Types Character Strings Integers Real (Floating Point) Constants Double Precision Floating Points Void Keywords and Identifiers Variables Declaration of variables Operators Arithmetic Operators Assignment Operator Increment and Decrement Operators Relational Operators Logical or Boolean Operators The Comma Operator The sizeof operator Writing your first C program. Chapter 2 - Statements Introduction True and False entities in C language Selection Statements The if-else Difference between equality and double equality Illustrative Examples The Switch Case Iteration Statements Illustrative Examples Jump Statements Label Statement Expression Statement Block Statements Chapter 3 – Arrays Introduction Searching and Sorting Illustrative Examples Selection Sort Bubble Sort Sequential Search Binary Search Two-Dimensional Array Multi-Dimensional Arrays Chapter 4 – Strings Introduction Declaring and Initializing String Variables Reading a string from the user Illustrative Examples Chapter 5 – Pointers and Functions Introduction What are pointers? How to use a pointer? Pointer Arithmetic Relationship between pointers and arrays.