What is C Language
C language is a system programming language because it can be used to do low level programming (for example driver and kernel). It is generally used to create hardware devices, OS, drivers, kernels, etc.
For Example
Linux kernel is written in C. It can't be used for internet programming like Java, .Net, PHP, etc.
Content:
_____________________________
Chapter 1: Getting started with C Language
Chapter 2: Comments
- 2.1: Commenting using the preprocessor
- 2.2: /* */ delimited comments
- 2.3: // delimited comments
- 2.4: Possible pitfall due to trigraphs
Chapter 3: Data Types
3.1: Interpreting Declarations
3.2: Fixed Width Integer Types
3.3: Integer types and constants
3.4: Floating Point Constants
3.5: String Literals
Chapter 4: Operators
- 4.1: Relational Operators
- 4.2: Conditional Operator/Ternary Operator
- 4.3: Bitwise Operators
- 4.4: Short circuit behavior of logical operators
- 4.5: Comma Operator
- 4.6: Arithmetic Operators
- 4.7: Access Operators
- 4.8: sizeof Operator
- 4.9: Cast Operator
- 4.10: Function Call Operator
- 4.11: Increment / Decrement
- 4.12: Assignment Operators
- 4.13: Logical Operators
- 4.14: Pointer Arithmetic
0 Comments
Thanks for Supporting me