The Complete C Programming For Beginners

C Programming: The Fundementals of C Programming Language from Ground UP with Illustrated + Hands on Coding Expalanation

Last updated 2022-01-10 | 4.1

- Understand Fundamentals of C Programming Language
- Learn One of the Most Popular & Widely Used Language in the World
- Master the C Programming Language from Ground Up

What you'll learn

Understand Fundamentals of C Programming Language
Learn One of the Most Popular & Widely Used Language in the World
Master the C Programming Language from Ground Up
Understand How to Write Clean & Efficient Code in C
Learn How to Solve Problem Using C Programming Language

* Requirements

* A Computer or Laptop with Internet Connection
* No Programming Experience
* All Concepts Taught in this Course

Description

Welcome to 'The Complete C Programming Course for Beginners' course.


In this course, you'll have a detailed, step-by-step explanation of C Programming where you'll learn about the best ways to solve problems. This is the course I wish I had when I was learning myself for the first time. This course comes with a 30-day money-back guarantee. So nothing to lose!


Why you should learn C Programming Language?

  • C is often considered to be the mother of all languages because so many other languages have been based on it.

  • If you want to be a better programmer, software engineer, C Programming is a great way to get started.

This course does not skip the details, this is a step-by-step and line-by-line explanation course. You will learn how to write high-quality code and become a great programmer. This course does not just present how to code in the C programming language, but, also explained all the details of "why". At the end of this course, you will fully understand the concepts of the C Programming language.

Learning C programming will not only make you understand one of the most powerful Programming Languages of all time but also gives a strong base for developing Problem-solving Skills in the field of computer science and Engineering.


By the time you're finished with the course, you will be prepared for common technical coding interview questions.

See you inside the course!

Who this course is for:

  • Anyone Looking for How to Code in the C Programming language
  • Who Want to Start Learning Programming Using C

Course content

17 sections • 96 lectures

Introduction Preview 03:23

Setting up environment for writting C Preview 03:01

Fresh 69 Coding Question + Solution (PDF Ebook) Preview 00:03

Basic Structure of a C Program Preview 01:52

Hello World Program Preview 01:14

Details hash include (#include) Preview 02:43

How a C Program Execute Preview 01:41

Datatypes and variables Preview 04:08

Naming convention of a variable Preview 05:04

Printing value of a variable Preview 03:25

Datatypes with examples Preview 03:06

Precision Preview 02:18

Constants Preview 02:38

How computer store character Preview 07:59

How computer store integer Preview 06:34

Introduction to ieee-754 Preview 01:24

How computer store floating point number Preview 05:14

How computer store double number Preview 04:30

Signed and Unsigned Integer Preview 03:53

Different types of operator in C Preview 02:37

Assignment operator Preview 03:10

Arithmetic operator Preview 01:33

Aside #include Preview 02:43

Getting input from user Preview 09:09

Aside New Line Metacharacter (\n) Preview 02:16

Precedence & Associativity Preview 07:36

Integer Division & Fractional Division Preview 01:19

If...Else Satement Preview 04:51

Nested if...else statement Preview 01:22

Checking a number even or odd using if else statement Preview 04:18

Switch Statement Preview 03:43

Checking a number even or odd using switch statement Preview 02:10

Find maximum of two integers Preview 03:02

Find maximum of three integers Preview 03:27

Find second largest of three integers Preview 06:33

What is ternary operator Preview 02:25

Find max of three integers using ternary operator Preview 03:09

Find second largest using ternary operator Preview 04:42

Introduction to loop Preview 02:23

for loop Preview 04:17

while loop Preview 04:51

do...while loop Preview 02:25

break and continue statement Preview 02:34

Infinite loop Preview 03:02

Nested Loop Preview 01:30

Keep asking for a positive input Preview 02:02

Sum of first n numbers Preview 05:07

Sum of even numbers upto n Preview 03:17

Sum of odd numbers upto n Preview 03:09

Factorial of a number Preview 03:14

GCD of a two numbers Preview 04:21

Prime number test Preview 07:37

Reverse an integer Preview 05:59

Palindrome number Preview 05:13

Print a triangle Preview 02:35

Introduction to function Preview 06:14

Parameter & Argument Preview 02:15

Why int main() return 0 Preview 01:08

Local Variable and Global Variable Preview 05:36

3 Place to declare functions Preview 03:33

Implementation of square() function Preview 02:29

Implementation of factorial() function Preview 03:06

Implemetnation of pow(x, n) function Preview 04:01

Implementation of reverse(int) function Preview 02:47

Implementation of countDigits(int) function Preview 03:29

Implementation of isPalindrome(int) function Preview 04:54

Implementation isPrimeNumber() function Preview 04:35

Array in C Preview 05:51

Two dimentional array (2D Array) Preview 01:26

How to find the size of an array (sizeof() operator) Preview 01:50

Linear Search Preview 04:32

Binary Search Preview 06:50

Find min number in an array Preview 02:50

Find max number in an array Preview 01:56

Print 2D array Preview 02:26

String in C Preview 05:57

String functions Preview 08:09

puts() & gets() Preview 04:01

String literal & Character literal Preview 03:27

Bitwise Operator in C Preview 16:54

Bit Masking Preview 09:40

Check even odd number using bitwise operator Preview 03:31

Pointer in C Preview 03:36

Call by value & call by reference Preview 04:08

Void Pointers Preview 01:02

Null Pointers Preview 01:43

strlen() impelementation Preview 05:00

strcat() implementation Preview 03:50

strcpy() implementation Preview 02:13

strcmp() implementation Preview 05:00

strncmp() implementation Preview 04:17

What is Struct Preview 09:46

Code ::Struct:: Example 1 Preview 05:02