C – Input/Output Functions

After reading this input/output functions topic, you will understand its theory and examples also you will able to use these functions in C programming.

C input/output functions used to accept data from the user or to display information on the screen. The two most commonly used Input/Output functions are printf() and scanf().

Continue reading C – Input/Output Functions

C – Arrays

After reading this arrays topic, you will understand its theory and examples, you will know the types of arrays also you will able to implement one-dimensional arrays.

Ordinary variables are capable to store only one value at a time, many times we need to store many values and declaring many variables for each value is not logically right, so construct one variable capable of storing many values is the logic of an array.

An array is a collection of memory location under a single variable or we can say when one variable is used to hold the finite number of elements of the same type then this variable called an array.

Continue reading C – Arrays

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