
In order to write and run C programs you will need to install an IDE (interactive development environment).
In this video will will install an IDE , Write our very first program, Break it down and explain the meaning of every keyword. We will cover Fundamentals of building your project as well as an introduction to all of the notions you need to know to get started.
Variables are one of the most idea in programming , in face every programming language has the notion of variables. They (Variables) are basically a way to store data temporarily to serve more sophisticated job.
Explore constants and macros in C, including decimal, octal (prefix 0), hex (prefix 0x), macro replacement with #define, and preprocessing, plus string continuation with backslash.
Explore conditional programming basics with if statements, else and else if chains, and braces to group code, plus the conditional expression using the question mark and colon and switch statements.
Explore arrays as a fundamental data structure in C, declare and initialize a 10-element container, access elements by zero-based indexes, and print or traverse them with for loops.
Functions take input and produce output, like math functions, with parameters. Learn about return types, including void functions, and modular design that simplifies code, using the Pandora's box metaphor.
Define a C struct to group related data into a single variable, access its members with dot notation, and optionally use typedef to simplify typing for later data structures.
Define an enumerator to create a month type with predefined values, store them in a variable, compare order-based values, and typedef the enum for reuse.
Compile C programs manually on Windows using gcc from the code blocks toolchain. Configure PATH to access gcc, create a hello world file, and run it from the command line.
learn to write a C program that reads text from standard input and prints the second five characters (indices 5-9) if length exceeds ten, using pointer arithmetic.
Count character occurrences with a 256-element array in a one-pass greedy approach, converting to lowercase and printing nonzero counts for each character.
Learn to implement a stack in C by creating a stack, using a stack node, a top pointer, and size, with push, pop, and empty checks and malloc memory.
Implement queue primitives in C by creating a queue with front and back pointers and a size, then push and pop elements, showing a constant number of operations.
Explore the tree data structure, nodes with left and right children, and binary search trees, as you insert distinct elements from root to leaves.
Learn to implement binary search tree insertion: create a tree, test emptiness, and insert elements by traversing left or right, handling duplicates, updating size.
Demonstrates a recursive print tree function that traverses left, prints the node, then right to produce in-order output; discusses pre/post/infix printing variants and tree balancing with AVL and red-black trees.
Explore how graphs model networks, from nodes and weighted edges to adjacency lists and matrices, and distinguish directed versus undirected and weighted versus unweighted graphs.
This video comes with the downloadable source code (The source code has a slight change, so please check it out)
Explore recursion, where a function calls itself to solve a problem by breaking it into subproblems, illustrated by the factorial example and its recurrence relation in a simple fact program.
Examine recursion in C with level 1 order factorial and level 2 order Fibonacci. Learn how recurrence relations drive merge sort and graph traversal in data structures.
Learn how depth first search traverses a graph by marking nodes as visited, exploring each neighbor recursively, backtracking when needed, and deriving a simple dfs pseudocode with a visited array.
Implement the Dijkstra shortest path algorithm in C, using a heap-backed graph, distance and parent arrays, and path reconstruction from source to destination.
C program takes two integers and prints numbers from the first up to the second using recursion; for example 4 to 11 prints 4 through 11.
Recursively prints a string by using a char pointer in reverse, printing the current char, recursing to the next, then backtracking to the null terminator.
In this course I will be teaching you everything you need to learn in order to become a professional C programmer , Algorithm designer and a problem solver. Whether you are a beginner or an experienced programmer , this course will fill all the gaps and give you a strong foundation and prepare you for an expert professional coding life.
If you chose computer sciences then Learning C is mandatory , Every kind of software was made with C, Operating systems such as Linux (The Most popular OS on earth), Version control systems such as Git (The most used Version control system on earth), Web servers such as Apache (The most popular web server on earth), Video game engines such as Unity3d (The most popular game engine on earth), Video encoders such as H.264 (The most popular and widely used video encoder on earth) , even most popular programming language were originally written in c such as c++ , c# , java , javascript, objective c... All of them was written with C. For that reason , any giant high tech company such as google , Microsoft ,IBM... will happily hire any programmer who masters C , Algorithms and Data Structure. So what are you waiting for ? Enroll now and let the journey begins.
This course will cover the following topics:
Course 101:
Algorithms:
Data Structures:
Problem set: