Features of C Programming Language
Features of C Programming Language
The utility of any technology depends on its important features. The features also
determine its area of application. In this chapter, we shall take an overview of some
of the significant features of C language.
C is a General-Purpose Language
The C language hasn’t been developed with a specific area of application as a target.
From system programming to photo editing software, the C programming language
is used in various applications.
https://www.tutorialspoint.com/cprogramming/c_features.htm 1/4
6/16/24, 10:55 AM Features of C Programming Language
The fact that C is a statically typed language also makes it faster compared to
dynamically typed languages. Being a compiler-based language, it is faster as
compared to interpreter-based languages.
C is Portable
Another feature of the C language is its portability. C programs are machine-
independent which means that you can compile and run the same code on various
machines with none or some machine-specific changes.
C is Extensible
C is an extensible language. It means if a code is already written, you can add new
features to it with a few alterations. Basically, it allows adding new features,
functionalities, and operations to an existing C program.
Standard Libraries in C
Most of the C compilers are bundled with an extensive set of libraries with several
built-in functions. It includes OS-specific utilities, string manipulation, mathematical
functions, etc.
Importantly, you can also create your user-defined functions and add them to the
existing C libraries. The availability of such a vast scope of functions and operations
allows a programmer to build a vast array of programs and applications using the C
language.
Pointers in C
One of the unique features of C is its ability to manipulate the internal memory of
the computer. With the use of pointers in C, you can directly interact with the
memory.
Pointers point to a specific location in the memory and interact directly with it. Using
the C pointers, you can interact with external hardware devices, interrupts, etc.
https://www.tutorialspoint.com/cprogramming/c_features.htm 2/4
6/16/24, 10:55 AM Features of C Programming Language
Recursion in C
C language provides the feature of recursion. Recursion means that you can create a
function that can call itself multiple times until a given condition is true, just like the
loops.
In C, you can define structures and union types. You also have the feature of
declaring enumerated data types.
Preprocessor Directives in C
In C, we have preprocessor directives such as #include, #define, etc. They are not
the language keywords. Preprocessor directives in C carry out some of the important
roles such as importing functions from a library, defining and expanding the macros,
etc.
https://www.tutorialspoint.com/cprogramming/c_features.htm 3/4
6/16/24, 10:55 AM Features of C Programming Language
File Handling in C
C language doesn’t directly manipulate files or streams. Handling file IO is not a part
of the C language itself but instead is handled by libraries and their associated
header files.
File handling is generally implemented through high-level I/O which works through
streams. C identifies stdin, stdout and stderr as standard input, output and error
streams. These streams can be directed to a disk file to perform read/write
operations.
These are some of the important features of C language that make it one of the
widely used and popular computer languages.
https://www.tutorialspoint.com/cprogramming/c_features.htm 4/4