1 | Introduction of Programming Language | Introduction |
2 | | What is programming language? |
3 | | Language Translators |
4 | Structure of C Program | Basic Structure of C Program |
5 | | The First C Program |
6 | | printf() function |
7 | | Variables |
8 | | Variable Naming Convection |
9 | | Data Types in C |
10 | | Character |
11 | | Integer, Float, Long |
12 | | Operators |
13 | | Arithmetic Operators |
14 | | Relational Operators, Logical Operators |
15 | | Assignment Operators, Increment and Decrement Operator |
16 | | Conditional Operators |
17 | | Data Input and Output |
18 | | scanf() function |
19 | Control Structures | Decision Control Structure |
20 | | The if statement |
21 | | The if-else statement |
22 | | Nested if-else |
23 | | The if-else ladder |
24 | | Loop Control Statement |
25 | | while loop, do-while loop |
26 | | for statement |
27 | | nested for statement |
28 | | break statement, switch |
29 | Arrays | Defining an Array, Single Dimensional Array |
30 | | Multidimentional Array, Two Dimensional Array |
31 | | Array and Strings |
32 | | The gets() and puts() function |
33 | Character Strings | What are strings? |
34 | | Standard library string functions |
35 | | strlen() |
36 | | strcpy() |
37 | | strcat() |
38 | | strcmp() |
39 | | strlen() |
40 | Functions | Defining a function, Accessing a function |
41 | | Passing argument to a function |
42 | | Different types of function |
43 | | |
44 | | |
45 | | Passing arrays to a function |
46 | | Passing by value approach |
47 | | Pass by reference approach |
48 | Pointers | Pointer Fundamentals |
49 | | * and & operators |
50 | | Pointer declarations |
51 | | Pointer and one dimensional array |
52 | | Operators on pointers |
53 | Structures | Simple Structures |
54 | | The struct keyword |
55 | | Defining and declaring structures |
56 | | Accessing structure members |
57 | | Pointer to structures |
58 | | Passing structures as arguments |
59 | File Handling | Input-Output operations on file |
60 | | Random Access to files |
61 | | ftell, rewind, fseek |