
C Programming :
C is a general-purpose programming language created by Dennis Ritchie at the Bell Laboratories in 1972. It is a very popular language, despite being old. C is strongly associated with UNIX, as it was developed to write the UNIX operating system
What is C programming language used for?
C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process
What is basic structure of C program?
A C program is divided into six sections: Documentation, Link, Definition, Global Declaration, Main() Function, and Subprograms. While the main section is compulsory, the rest are optional in the structure of the C program.
1. Introduction to C Programming:
- What is C Language
- Why C Language
- Features in C Language
2. Setting up and Installing Software:
- Prerequisite in C Language
- Installation of gcc


3. Data Type, Constants & Variables:
- What is Data Types in C Language with practical
- Integers, long and short in C Language with practical
- Integers, signed and unsigned in C Language with practical
- Chars, signed and unsigned in C Language with practical
- Floats and Doubles in C Language with practical
- Constants in C with practical
- Variables in C with practical
- Keywords in C with practical
- How to get input from user with practical
- How to display output to user with practical
LEARNING PATH

4. Operators & Enums:
- Operations On Bits in C Language with practical
- Bitwise Operators with practical
- One’s Complement Operator with practical
- Right Shift Operator with practical
- Left Shift Operator with practical
- Bitwise AND Operator with practical
- Bitwise OR Operator with practical
- Bitwise XOR Operator with practical
- Enumerated Data Type with practical
- Uses of Enumerated Data Type with practical

5. Control Statement:
- IF-Else Statement in C Language with practical
- for Loop in C Language with practical
- While Loop in C Language with practical
- Do-While Loop in C Language with practical
- Break in C Language with practical
- Continue in C Language with practical
- Switch in C Language with practical

6. Function:
- What is a Function in C Language with practical
- Passing Values between Functions in C Language with practical
- Call by Value in C Language with practical
- Call by Reference in C Language with practical

7. Pointers:
- An Introduction to Pointers
- Pointer Notation in C Language
- Back to Function Calls in C Language with practical
- Recursion in C Language with practical

8. Preprocessor:
- The C Preprocessor in C Language
- Features of C Preprocessor
- Macro Expansion in C Language
- Macros with Arguments with practical
- Macros versus Functions with practical
- File Inclusion in C Language with practical
- #if and #elif Directives with practical
- Miscellaneous Directives in C Language
- #undef Directive with practical
- #pragma Directive with practical

9. Arrays:
- What are Arrays in C Language
- A Simple Program Using Array
- How to Initialize Array in C Language with practical
- Passing Array Elements in C Language to a Function with practical
- Pointers and Arrays in C Language with practical
- Passing an Entire Array to a Function in C Language with practical
- Two Dimensional Arrays in C Language with practical

11. Structure and Union:
- What is Structure in C Language
- Why Use Structures in C Language
- Declaring a Structure in C Language with practical
- Accessing Structure Elements in C Language with practical
- What is Union in C language
- Why Use Union in C language
- How Structure Elements are Stored with practical
- Difference with structure and union
- Additional Features of Structures with practical

12. File Operations:
- File Input/output in C Language with practical
- File Operations in C Language with practical
- Opening a File in C Language with practical
- Reading from a File in C Language with practical
- Closing the File in C Language with practical
- Counting Characters, Tabs, Spaces, with practical
- A File-copy Program in C Language