Tag: C Programming
C Language Elements
C Language comes with predefined elements and user-defined elements along with some associated grammatical rules. So before starting programming, we need to understand these components. These elements are character sets, keywords (reserved words), variables, data types, constants, expressions,…
Read More »C Functions
A Function is a self-contained subprogram that can perform some specific task. Programmers called it either function or subprogram. In C language we have a lot of functions. But In c has one default function which is the called main function. The main function either executes another function or statements.
Read More »C Arrays
An array is a continuous and contiguous collection of similar types of data.
Read More »