Learn C Programming Language

Learn complete C Programming basic fundamentals with example codes explained in details

Last updated 2022-01-10 | 3.8

- Write C programs using advanced concepts
- Understand
- Analyse and modify any standard code
- Strong basics in the bag
- which makes you explore more in the software world

What you'll learn

Write C programs using advanced concepts
Understand
Analyse and modify any standard code
Strong basics in the bag
which makes you explore more in the software world

* Requirements

* No prior knowledge is required
* Need a Compiler to run programs
* How to download Compiler is shown in lecture 2

Description

C Programming Language is the most popular computer language and most used programming language till now, It is very simple and elegant language, Every programmer should and must have learnt C whether it is a Java or C# expert, Because all these languages are derived from C. In this tutorial you will learn all the basic concept of C programming language, This course explains everything with example codes. Every section in this tutorial is downloadable for offline learnings, Topics will be added additional to the tutorial every week or the other which cover more topics and with advanced topics.

  • All basic fundamentals will be explained in detail
  • Regular updates with new topics with examples
  • By the end of the course you will be able to write your own code
  • You will get strong core knowledge with this course

Who this course is for:

  • This course is for beginners who want to learn C language
  • Who want to make their carrier in the IT industry

Course content

12 sections • 68 lectures

Welcome Preview 01:19

Introduction Preview 05:07

.For High Quality click on HD button on video player, Place your mouse at the bottom of the player and make sure HD button is on

Important points Preview 01:37

How to download and install a compiler Preview 07:21

Code::Blocks is a free, open source cross-platform IDE which supports multiple compilers including GCC, Clang and Visual C++. It is developed in C++ using wxWidgets as the GUI toolkit. Using a plugin architecture, its capabilities and features are defined by the provided plugins.

"Hello World" Our first program Preview 10:12

Every program starts with main() function

#include is preprocessor directive which will be discussed later

Text Preview 02:05

Commenting inside the code Preview 02:13

Read some points Preview 02:01

Questions

Keywords and Identifiers Preview 01:37

keywods list and rules for identifiers Preview 02:04

C Tokens Preview 03:54

Data Types Preview 02:09

Data types description Preview 02:59

Q&A

C program to add two numbers Preview 14:37

source code Preview 00:20

C program to add two decimal numbers Preview 01:40

source code Preview 00:14

C program to Display the name entered by the user Preview 03:41

C program to swap two numbers Preview 13:27

Few more example programs before proceeding further Preview 12:32

Quiz on basics

Conditions and Loops, If statements example Preview 07:38

Loops: for loop, while loop, do-while loop Preview 10:27

Q&A

C program to find the largest number Preview 04:12

C program to tell whether the alphabet entered by the user is vowel or consonant Preview 02:34

C program to display multiplication table Preview 03:57

C program to print Triangle shape using stars Preview 08:50

Q&A

Functions Introduction Preview 05:08

add() function Preview 05:11

add() and sub() function example Preview 03:05

Decision making on calling a funcion Preview 05:57

Q&A

Arrays Introduction Preview 05:27

Arrays example Preview 05:04

C program to get the total of marks Preview 06:01

Multi-Dimensional Arrays Preview 04:32

Code example for multi-dimensional array Preview 08:04

Programming Example of Three-Dimensional array Preview 03:16

C program to add two arrays Preview 04:50

Changing the output result look Preview 04:59

Q&A

Introduction to strings in C Preview 03:40

gets() and puts() in strings Preview 05:38

Calling functions using string type Preview 01:53

Standard string functions in string.h header file Preview 02:26

String function explanation using example Preview 04:19

Q&A

Introduction to Pointers in C Preview 08:06

Pointers practical Preview 04:39

Pointers practical example extension Preview 02:46

Pointers and Arrays Preview 07:44

Pointers and Arrays Example Preview 03:42

Pointers and Functions Preview 03:01

Dynamic memory allocation Preview 04:08

Example of dynamic memory allocation functions Preview 05:42

Q&A

Structures in C Preview 04:44

Structures using Pointers Preview 02:33

Structures and functions Preview 03:05

Unions Preview 02:37

C Enemuration Preview 05:40

Q&A

C Preprocessors and macros Preview 05:18

Q&A