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

C Language Notes

C is a programming language developed by Dennis Ritchie, featuring a basic structure that includes #include, int main(), and printf(). It supports various data types such as int, float, char, and double, along with input/output functions like scanf() and printf(). Additionally, C includes operators, conditional statements, loops, arrays, functions, and pointers for efficient programming.

Uploaded by

vinayjangid282
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)
4 views1 page

C Language Notes

C is a programming language developed by Dennis Ritchie, featuring a basic structure that includes #include, int main(), and printf(). It supports various data types such as int, float, char, and double, along with input/output functions like scanf() and printf(). Additionally, C includes operators, conditional statements, loops, arrays, functions, and pointers for efficient programming.

Uploaded by

vinayjangid282
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 Language Notes

1. C is a programming language created by Dennis Ritchie.

2. Basic Structure: #include , int main(), printf(), return 0;

3. Data Types: int, float, char, double

4. Input/Output: scanf() and printf()

5. Operators: +, -, *, /, %

6. Conditions: if, else

7. Loops: for, while

8. Arrays: Store multiple values

9. Functions: Reusable blocks of code

10. Pointers: Store memory addresses

You might also like