C – Functions

After reading this C functions topic, you will able to use it in C programming, you will understand the user-defined function structure also you will know the user-defined function advantages.

In real life, instead of doing all task alone, we generally get our work through others i.e. we divide our work. That’s why C language provides us with a subprogram facility called function.

Continue reading C – Functions

C – Operators

After reading this C operators topic, you will understand its theory and examples also you will able to use various types of C operators in C programming.

In our routine life, we also use some operators like plus (+), minus (-), etc. to perform simple arithmetic operations like addition, subtraction, etc. That’s why C language provides us a set of operators to perform a specific operation.

Continue reading C – Operators

C – Structure

After reading this C structure topic, you will understand its syntax and also you will able to implement it in C programming.

In real life, a publisher who prints the book of various authors and generate the list of books in the order of the title of the book, so to deal such types of real-life problems, C language provides structure facility.

A structure is a collection of one or more variables of different data types under a single name.

Continue reading C – Structure

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