Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
5 views1 page

C Language Brief Notes

C is a general-purpose, procedural programming language created by Dennis Ritchie in 1972, known for its speed and portability. It includes fundamental data types, operators, control structures, and features like pointers, arrays, and functions for modular programming. C's efficiency and flexibility have established it as a foundational language for many modern programming languages.

Uploaded by

monishkumara2008
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views1 page

C Language Brief Notes

C is a general-purpose, procedural programming language created by Dennis Ritchie in 1972, known for its speed and portability. It includes fundamental data types, operators, control structures, and features like pointers, arrays, and functions for modular programming. C's efficiency and flexibility have established it as a foundational language for many modern programming languages.

Uploaded by

monishkumara2008
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

C is a general-purpose, procedural programming language developed by Dennis Ritchie in 1972.

It
is fast, portable, and widely used for system programming, embedded systems, and applications. A
C program generally consists of functions, with main() being the entry point. It supports
fundamental data types (int, char, float, double), operators (arithmetic, relational, logical, bitwise),
and control structures like if-else, switch, and loops (for, while, do-while). Arrays and strings allow
handling collections of data, while functions enable modular programming. Pointers, a powerful
feature of C, provide direct access to memory. Structures and unions are used for grouping different
data types. C also supports file handling for persistent storage. Its simplicity, efficiency, and
flexibility make it the foundation of many modern programming languages.

You might also like