All Articles

Page 84 of 90

2021-10-11

Compilation and Execution

Once you have written the program you need to type it and instruct the machine to execute it. To type […]

2021-10-10

Libraries and Library function

Libraries are the files of ready-compiled code that the compiler merges, or links, with a C program during compilation. For […]

2021-10-07

Operators in C language

An operator is a character or string of characters used as a built-in function. An operator is so-called because it […]

2021-10-06

Escape sequence in c

Escape sequences are special characters in C that are used to represent certain non-printable or special characters in a string […]

2021-10-05

Data type in C language

The data type determines a set of values that a variable can have and the possible operations that can be […]

2021-10-04

Keywords in C language

Keywords are predefined reserved words in the C language that have a special meaning and cannot be used as variable […]

2021-10-03

constants in c language

A constant is an entity whose value remains the same throughout the execution of the program. It can not be […]

2021-10-01

Identifiers in c language

Identifiers are user-defined names used to identify variables, functions, arrays, structures, and other entities in a C program. Identifiers are […]