Arrays allow to define types of variables that can hold several data items of the same kind similarly structure is another user defined data type in C that allows to combine data items of different kinds.
17 – Strings in C Programming Language
In this chapter, we will talk about Strings.
Actually, strings are one-dimensional array of characters terminated by a null character ‘ \0 ‘. Thus a null terminated string contains characters that comprise the string followed by a null.
16 – Pointers in C Programming Language
In this chapter, we will talk about Pointers.
In C, Pointers are very easy to learn. Some C programming Tasks are performed more easily with Pointers & other tasks such as dynamic memory location cannot performed without using Pointer. So it becomes necessary to learn Pointers to become a perfect C programmer.
So Let’s start learning Pointers in simple & easy way.
15 – Arrays in C Programming language
In this chapter, we will talk about Arrays.
Array
Array is a kind of data structure which can store a fixed-size sequential collection of elements of the same type. An array is used to store a collection of data, but it is often more useful to think of an array as a collection of variables of the same type.
13 – Types of Functions or Input/Output Functions in C
In this chapter, we will talk about types of functions:
10 – Decision Making or Selection Statements In C Language
In this chapter, we will learn Selection Statements.
Decision Making
Decision making structure requires that the programmer specifies one or more conditions to be evaluated or tested by the program along with statements to be executed, if the condition is determined to be true & Optionally, if the condition is false other statements will be executed.
9 – Operators in C Language
In this chapter, we will look into the way that how each Operators in C works.
7 – Constant & Literals in C Language
In this chapter, we will learn Constants & Literals in C.
Constant
Constant refers to that fixed values which may not alter during program execution. These fixed values are also called literals.
8 – Storage Classes in C Language
Storage Class define the Scope (visibility), life-time of variables and/or functions within a C program. We have (4) four different classes in C program.
- auto
- register
- static
- exam