
An introductory video for students in my Complete C Programming Course for Absolute Beginners!
C Programming Course - Curriculum:
Fundamentals of Programming in C (What is C? Getting Started!)
Summarized & Concise Material [Saving TONS of Time!]
OVER 100 Practical Exercises in C Programming!
Animated Explanation & Illustrations - Explaining "Hard Topics" EASY
C Programming Language Concepts & Usage
C Program Structure
Using Input & Output Functions in C Language
Usage of Variables - declaration | initialization | access [Variables in C Language]
Casting in C
Control Flow - if | if-else | switch-cases
Logical Operators in C Programming
Loops - while | do-while | for [C Programming loops]
Functions - declaration | definition | usage [Functions in General & C Programming]
1D Arrays - Why do we need them & How they can be used? [Arrays in C Language]
2D Arrays - Matrices [Matrix in C]
Introducing "#define"
Pointers - Time to Sweat! - Why | When | How - [Basic Pointers in C Programming]
Strings - Creating, Reading, Manipulating & Printing [Strings in C Language]
Recursion - Concept | Usage [Recursion usage in C Language]
Constants
Unions
Introduction to User & Developer concept in Programming in General
“Used with permission from Prezi Inc.”
What is a Computer as a Unit? How will it be used in our programming course?
“Used with permission from Prezi Inc.”
Computer Additional Common Parts which are going to be used for the development of our programs.
“Used with permission from Prezi Inc.”
“Used with permission from Prezi Inc.”
Introducing different IDEs for the development process using C Programming in our course.
Among the IDEs there are:
- CodeBlocks for C.
- Visual Studio for C.
- CodeLite using C Programming Language and Compiler.
- Visual Studio Code.
- others.
Download & Install CodeBlocks for C Programming Language Development
Install and verify GCC on your Mac using the terminal, learn what the GNU Compiler Collection does, and confirm the setup with a gcc -v check.
Download and install CodeBlocks on Mac using the binary release from SourceForge, noting its beginner-friendly, lightweight, extensible, and free IDE with GCC support.
Downloading Visual Studio IDE for Windows
Getting stated working with Visual Studio in C Programming Language
Explore Visual Studio Code’s interface, extensions, and terminal to set up C/C++ development, install the C/C++ extension by Microsoft and Code Runner, and run hello world in C and C++.
Downloading and Installing CodeLite for Windows, including:
- MinGW (Minimalist GNU for Windows)
- LLVM (Low-Level Virtual Machine)
Getting started by creating and working on projects in C Programming Language
Learn basics of c program structure by writing your first program with int main as the entry point, braces for the block, using semicolons with stdio and stdlib for input/output.
Write a simple C program that uses printf to display your first name and last name, with a newline, on screen.
Write a C program that prints an isosceles triangle of asterisks, first with multiple printf commands, then with a single printf command.
Develop a simple C program to print a five-row by ten-column asterisk rectangle using a single function. Practice this hands-on exercise to build confidence for upcoming assignments.
Learn to print a five by ten pattern of stars and numbers in C using printf and backslash n, exploring per-row versus single-printf approaches.
Learn to declare and create variables in C, assign values, and read user input with scanf, then compute and print the average of two grades.
Explore casting in C by comparing integer and floating point operations; learn how dividing 5 by 2 yields 2 or 2.5 depending on the type.
Build a weather station in C that converts Celsius and Fahrenheit using C to F: multiply by 1.8 and add 32; F to C: subtract 32 and divide by 1.8.
Swap without 3rd Variable?! Is it really possible?
I want to let you know that I’ve recently added a new Interview Question that may actually interest you - "Swap without 3rd Variable"
A very common question that is being asked in a lot of tech interviews - So you better check it out in the “Interview Questions” section of this course.
Oh, and there is also a FULL SOLUTION that I've added just for you :)
Enjoy!
Go To: ---> [Interview Questions] ---> Swap without 3rd Variable
Explore variables in C programming by declaring, assigning, casting, and reading input. Learn about swaps and tackle interview questions to strengthen practical programming skills.
Calculate the sum of an arithmetic sequence in C by applying the formula (a1 + an) * n / 2, reading a1, an, and n, and printing the result.
Write a program that receives the hourly salary and the total hours worked for a given month. The program should calculate and print the employee's total monthly salary.
Write a C program that reads salary per hour and total hours worked, then calculates and prints the monthly salary by multiplying these values.
Read an integer representing seconds and convert it to hours, minutes, and remaining seconds using division and remainder; example 4000 seconds equals 1 hour, 6 minutes, 40 seconds.
Learn to extract the integer and decimal parts from a floating point value in C. Use explicit casting to int and subtraction with scanf/printf, illustrated by 12.7.
Read x from the user and compute x squared, x to the fourth, sixth, and eighth, then show an optimized approach that reuses powers to reduce multiplications.
This course has been optimized to meet the requirements and demands of students who are eager to learn the C Programming Language in the most easy and attractive manner. Including handpicked coding materials and over 100 exercises with full video solutions - this bestseller course is expected to provide you with everything you need to get started (for beginners) as well as provide you with beneficial knowledge if you're working at High-tech industry (especially in the Embedded, Microcontrollers, Cyber, and other domains).
About the Instructor
BSc in Computer Science & BSc in Electronic Engineering
Practical experience working as an Engineer at some of the leading High-tech companies such as “Mobileye - an Intel Company” as well as a Cyber Systems Startup.
Over 3 years of experience working as a lecturer in the Academy - teaching students from 3 different faculties.
This combination of the knowledge and experience gained over the years made me feel eager and passionate about sharing my knowledge with students.
It got me wonder - why not help so many students to learn c programming in an easy and fun way? I mean learning the c language can feel like a nightmare.. but C can be actually kind of fun - if we do it right!
And that's what I aim to achieve - Teaching you "C Programming" in plain English.
So I hope you're ready for our C Programming Language Bootcamp Journey! :)
Last Update 2025 - Who's this course for?
C students in college/university. Has been optimized to meet the needs of the beginner students.
High-tech employees, especially but not limited to, at the Embedded Systems, Microcontrollers, and Cyber Security domains.
Absolute beginners and hobbyists who want to get the first taste of programming using the c language.
So if you belong into one of these - then I think you're ABSOLUTELY going to LOVE this course!
What is C Programming Language?
C Language is the “mother” of all programming languages.
C first appeared almost 50 years ago and has been used for the development of:
Operating Systems - C as its core.
Core parts of famous databases (such as Oracle and MySQL) - Yes, even MySQL was developed using C.
Cyber-Systems - I personally was programming C to develop a cyber system.
Smart Homes & Smart Cities
Systems including Sensors and Micro Controllers (especially in Embedded Systems) - Common usage to programming an MCU using C Programming Language.
Also, if you're familiar with Python Programming Language - then you better know that a lot of Python efficient libraries are actually implemented in C.
“C Language is definitely here to STAY!”
C is HIGHLY USEFUL & HIGHLY EFFICIENT.
Also, it’s considered that by learning C Programming you’re definitely going to make your programming fundamentals VERY STRONG.
And finally to answer a question that a lot of you may have - there is a HIGH DEMAND for C Developers in the market - at both large companies as well as startups - and the salaries are usually PRETTY HIGH! :)
So C Programming - usually pays off.
[C Programming - Course Information]
In this course, you’ll learn the fundamentals of programming using C Language - including different concepts such as:
Programming Concepts (General + C Language)
Input & Output (what it is and how it can be used in C)
How variables work
Conditions & Control Flow (controlling the execution flow of a C Program)
Different types of Loops (including For, While, and Do-While in C)
Functions
Arrays in C
Pointers
Using Strings in C Programming
Recursions (Concepts + C Usage)
Constants
Unions
And maybe some additional sections in C Programming Language
Each and every one of the major topics are being taught with plenty of exercises (of course, in C Programming Language) with full video solutions.
[Sections Structure]
At every section, you will be given with:
Introduction to the General Concept without the C language.
Implementing Concept in C Programming Language.
Hands-On Exercises Challenges + FULL VIDEO SOLUTION - using C Programming.
Cool Milestones such as:
Developing a Calculator in C.
Developing your own Weather Station in C.
C Password Guess Program.
And many more "c" Cool Milestones that will make you feel how the Theoretical and Practical knowledge are getting together!
Additional Sections - OPTIONAL.
By the end of the course - you should be able to analyze and solve various c programming problems on your own.
So if you're a Total Beginner, a student or you're just curious about the topic – this course is ABSOLUTELY FOR YOU!
*Also, if you're a Programmer who wants to make a Career Change to C Programming (from Python Programming, JavaScript and Web Development, C#, or any other).
Should you enroll?
If you're still unsure - then no worries. I'm so confident about my course and what it will teach you so that you get Udemy's 30-day money-back guarantee.
Doubts - Out. Enroll "C" - In.
Let's go!