C

Basics of C Arrays

C language provides a capability called ‘array’ that enables the user to design a set of similar data types. Very…

Basics of C Functions

Fundamentals of functions There are basically two types of functions in C. Library functions User-defined functions The commonly required functions…

C while, do-while and for Loops

C programming language provides two types of control statements. Selection or Decision Control Statements - The decision and case control…

C if, if-else and switch statements

C programming language provides two types of control statements. Selection or Decision Control Statements - The decision and case control…

C Operators and Type Conversion

Operators An operator is a symbol that represents a particular operation that can be performed on some data. The data…

Basics of C Preprocessors

The Preprocessor Directive The preprocessor is a program that is invoked by the compiler to process code before compilation. Commands…

C Constants, Variables and Data Types

C is a structured programming language developed at AT&T’s Bell Laboratories of USA in 1972. It was designed and written…

Basics of File Handling in C

Quite often, it becomes necessary to manipulate large amounts of data, which cannot be typed manually through the keyboard. It…

Beginners Guide to C Structures: Definition, creation and manipulation

We have learned to create group elements of the same type into a single logical entity array. If it looks…

Beginners Guide to C functions

A function is often defined as a section of a program performing a specific job. In fact, the concept of…