I

Identifiers in C

1 Min Read
0 1367
1 Min Read
0 1367

Identifiers are user-defined names (with a sequence of letters and digits) given to the variables, arrays, functions, structures, unions, etc. For example: In terms of computers, it uses a range of addresses to identify the data. But as a programmer,…

Continue Reading
K

Keywords in C

1 Min Read
0 1607
1 Min Read
0 1607

In C, two types of names a programmer can use in his program. They are Keywords – Definition : Keywords are the pre-defined or reserved names given by the creators of the C language. Keywords will play a major role…

Continue Reading
C

Compilation process of a C program

1 Min Read
0 2782
1 Min Read
0 2782

We have four stages in the compilation process. They are Creating a helloworld.c program: Pre-processor: In Pre-processing stage header-file inclusion, macro substitution, comment removal & conditional compilation will be done. The input to the pre-processor is the “.c” file and…

Continue Reading
W

What is a compiler?

1 Min Read
0 1430
1 Min Read
0 1430

A compiler is a program that converts a program written in a high-level format (Human understandable) to a low-level format (Machine understandable). High-level format : Low-level format: Above, we have seen both high-level and low-level formats of a program to…

Continue Reading
S

Structure of a C program

1 Min Read
0 1068
1 Min Read
0 1068

The structure of a C program constitutes of different sections as shown below Documentation Section: This section is also known as the commenting section. In this section programmers write a few comments about their program which will be helpful for…

Continue Reading
Exit mobile version