Description
Grouping Tasks Together
1. 1. What is Function?2. Writing a function
3. Calling a function
4. Let’s Revise
Scope
1. What is a scope?
2. Local Scope
3. Global Scope
4. Let's Revise
Calling the function repeatedly
1. What is recursion?
2. Recursion in action
3. Let's Revise
Manipulating the flow of program
1. Introduction
2. break
3. continue
4. goto
5. Let's Revise
Strings
1. What is a string?
2. Operations on strings
3. Let's Revise
Storing address of variables(Pointers)
1. What is a Pointer?
2. * and &
3. Using pointers in C
4. Let’s Revise
Storing different values
1. What is a structure?
2. Writing a structure
3. Accessing structure data
4. Let’s Revise
Union
1. What is a union?
2. Writing a union
3. Accessing union data
4. Let’s Revise
Preprocessors in C
1. What is a preprocessor?
2. Different type of preprocessor directives
3. Exploring include and define
4. Let’s Revise
Header files in C
1. Header files in C
2. Exploring different header files in C
3. Let’s Revise
Memory management in C
1. Memory management in C
2. Malloc function
3. Calloc function
4. Free function
5. Realloc function
6. Let’s Revise
Operations on files
1. Introduction
2. Opening a file
3. Reading a file
4. Writing a file
5. Closing a file
6. Let’s Revise