Book Image

Programming in C - The Complete Course [Video]

By : Anand Mahajan
Book Image

Programming in C - The Complete Course [Video]

By: Anand Mahajan

Overview of this book

A vast majority of modern programming languages and popular libraries are based on C, making C an essential language to learn for coding enthusiasts. Starting with the basic keywords and syntax of C, this book will help you get acquainted with variables, constants, data types, and operators. You’ll then understand the concept of flow control and explore the use of different tools such as loops (including if...else, while, and switch), functions, and arrays. As you advance, you’ll get to grips with pointers and implement them to create practical programs and pieces of code. By the end of this course, you’ll not only be able to code efficiently, but you’ll also have expertise in solving a wide variety of programming problems effectively. All the code and supporting files for this course are available at https://github.com/PacktPublishing/Programming-in-C-The-Complete-Course.
Table of Contents (19 chapters)
10
Strings in C Language (char arrays)
Chapter 14
Storage classes in C
Content Locked
Section 1
auto and static storage classes
Learn about auto and static storage classes in C. Auto is a default storage class whereas static is a local variable which can return a value even when control is transferred to the function call