C – Storage Class

After reading this storage class topic, you will understand its theory and you will able to implement it in C programming.

C Storage class deals with the storage location of the variable, the initial value of the variable, the life of variable and scope of the variable. Storage class also referred to “scope and lifetime of variable” in function.

Continue reading C – Storage Class

C – Multidimensional Array

After reading this C multidimensional array topic, you will understand its theory and examples also you will able to implement two-dimensional array in C programming.

Often there is a need to store and manipulate two-dimensional data structure such as tables and matrices. The C Multidimensional Array facility helps to manipulate tables, matrices, etc. in programming. Continue reading C – Multidimensional Array

C – Conditional Statements

After reading this conditional statements topic, you will understand conditional statements types and you will know the conditional statements flowchart, theory, and examples.

Like the real-life situation, C language provides the facility to user to take decisions based on any condition in a program. The C statements through which we can control the execution of the program is called decision control statements.

The conditional statements execute different statements based on different conditions. It can be classified as shown below into uni-directive statement, bi-directive statement and multi-way branching statement.

Continue reading C – Conditional Statements