0% found this document useful (0 votes)
24 views6 pages

C Programming Basics and Features

C is a procedural programming language developed by Dennis Ritchie, known for its simplicity, efficiency, and portability. It includes basic data types such as int, float, char, and double, and utilizes control statements like if and loops for flow control. Functions and pointers are key features, allowing for reusable code and memory address management.

Uploaded by

Rutvik More
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)
24 views6 pages

C Programming Basics and Features

C is a procedural programming language developed by Dennis Ritchie, known for its simplicity, efficiency, and portability. It includes basic data types such as int, float, char, and double, and utilizes control statements like if and loops for flow control. Functions and pointers are key features, allowing for reusable code and memory address management.

Uploaded by

Rutvik More
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

C PROGRAMMING NOTES

Introduction to C
C is a procedural programming language developed by Dennis Ritchie.

It is widely used for system programming.


Features of C
Simple and efficient

Structured language

Fast execution

Portable
Data Types and Variables
int, float, char, double are basic data types.

Variables store data values.


Control Statements
if, if-else, switch

for, while, do-while loops


Functions and Pointers
Functions are reusable blocks of code.

Pointers store address of variables.

You might also like