
In this video I explain about the introduction to programming language, History of C programming and why should we learn C programming.
In this video I explain about the introduction about different parts of a computer system and functions.
In this video it’s provide an introduction about the structure of C program, components such as preprocessor and main function.
This video will give clarity about keywords in C programming.
In this video i explained about Identifiers are basically the names given to program elements such as variables, array and functions.
In this video i explained about data types, C language provides very few basic data type such as int, float, double and char.
In this video talk about what is variable and how to declare and initialization of variables syntax with example.
In this video talk about how to Declaration and Initialization of Variables with help of hands-on example.
The sizeof() Operator/function in C is a built-in function that is used to calculate the size (in bytes) that a data type occupies in the computer's memory.
The C programming language provides standard library functions to read any given input(scanf() )and to display data on the console.
In this Video i explained about what software requirements for this course, how to install Code blocks and How to use online C Compiler.
The scanf() function can be used to take any data type input from user.
The printf() function is the most used function in the C language. This function is defined in the stdio.h header file and is used to display the output on the console.
This video talk about how memory is divided blocks and how variables are stored in memory using address.
This video I explained about C programming environment and different types of errors such as Syntax error, sematic error and Logical Error.
This video talk about introduction of different operators in C such as arithmetic, logical and relational.
This video talk about hands-on example of different operators in C such as arithmetic, logical and relational.
This video talk about Unary operator’s introduction and Hands-on example of Increment and Decrement Operators in C.
This video talk about syntax and introduction of conditional or the ternary (? :) operators in C.
This video talk about Hands-on example of Conditional Operator.
This video talk about the sizeof operator is a unary operator used to calculate size of each data type.
The sizeof operator is used to calculate the size of data types. This operator can be applied to all data types.
This video talk about conditional branching statements help to jump from one part of the program to another part. These decision statements include: if, if-else, if-else-if and switch statement.
This video talk about the if statement is the simplest form of decision statement with help of hands-on examples.
This video talk about the if-else and if-else if decision statements with help of hands-on examples.
This video talk about the switch conditional statement, a switch case statement is a multi-way decision statement that is a simplified version of an if-else block that evaluated only one variable.
This video talk about the Introduction and syntax of Iterative statements such as for, while and do-while loop in C.
This video talk about the how to solve the various problems using for loop with help of hands-on example.
This video talk about the how to solve the various problems using while loop with help of hands-on example.
This video talk about the how to solve the various problems using do-while loop with help of hands-on example.
This video talk about the introduction to jump statements such as goto, break and continue with help of hands-on example.
This video talk about the definition of array, declaration, Initialization of array and different types of array in C programming language.
This video talk about the declaration, Initialization, read and print the single dimensional array with help of hands-on example.
This video talk about the traversing the array elements means accessing each and every element of the array with help of hands-on.
This video talk about the linear search is a simple method used for searching an array for a particular value.
This video talk about the binary search is a one method used for searching an array for a particular value, that works efficiently with a sorted list.
This video talk about the Bubble Sort is the simplest sorting algorithm that works by repeatedly swapping the adjacent elements in ascending order, if they are in wrong order.
This video talk about the selection sort algorithm sorts an array by repeatedly finding the minimum element (considering ascending order) from unsorted part and putting it at the beginning
This video talk about the declaration, Initialization, read and print the two-dimensional array with help of hands-on example.
This video talk about the how to do the matrix addition with help of hands-on example.
This video talk about the introduction to string, declaration and initialization of string and string built-in functions.
This video talk about the declaration, Initialization, read and print the string.
This video talk about the how to finding the length of string without using built-in function with help of hands-on example.
This video talk about the how to copy the one string to another string without using built-in function with help of hands-on example.
This video talk about the concatenating two string without using built-in function with help of hands-on example.
This video talk about the some of the string built-in function such as length, copy and concatenating string using built-in functions.
This video talk about the some of the string built-in function such as compare, copy and string char using built-in functions.
This video talk about the introduction to pointers, declaration, initialization of pointers and pointer with array
This video talk about the Hands-on session of add two floating pointer numbers
This video talk about the Hands-on session of read and displaying array elements using pointers.
This video talk about the Hands-on session of read and displaying string using pointers.
This video talk about the definition of functions, types of functions and structure of user defined by functions.
This video talk about the difference between actual and formal parameters and the use of this.
This video talk about the first form of the function that is function with no argument and no return values with help of hands-on example
This video talk about the second form of the function that is Function with arguments and no return values with help of hands-on example
This video talk about the third form of the function that is Function with no arguments and return values with help of hands-on example
This video talk about the fourth form of the function that is Function with arguments and return values with help of hands-on example
This video talk about the fifth form of the function that is Function that return multiple values with help of hands-on example
In this video I explain about the how to pass array to the functions with help of hands-on example.
In this video I explain about the recursive function and how this recursive function will work with help of hands-on example.
In this video I explain about the Hands-on session of Recursive function with help of example I.e. finding the factorial and finding the sum of N natural number.
In this video I explain about the Introduction to structures and declaration and Initialization of structure members.
In this video I explain about the introduction to structure and how to declare and initialization of structure members with help of hands-on example.
In this video I explain about the how to declare and initialization of array of structure members with help of hands-on example.
In this video I explain about the three methods of structures with functions such as a Passing Individual members of structure, Passing Entire Structure and Passing address of the structure.
In this video I explain about the Introduction to union and declaration and Initialization of union members.
In this video I explain about the introduction to union and how to declare and initialization of union members with help of hands-on example and I explained difference structure and union.
In this video I explain about the Introduction to Enumeration and the use of enumeration with help of hands-on example.
Thanks for showing your interest in this course :)
This course specially designed for Students and Developers who are looking Beginners level concepts. Having C programming skills gives you great career opportunities, You’ll learn how to write high-quality C code and to make yourself more marketable for best programming positions.
Let me tell you a little bit about the course:
We start the course by Introduction to C programming Language.
We will install software for the course that is Codeblocks.
Then we will go through the process of compiling and executing C programming Environment.
We will learn Operators and its importance in C program.
Then we will learn Conditional statements, Loops and jump statements in C programming Language.
We will learn Introduction to arrays, different types of array and operations of array.
Then we will learn Introduction to strings and operations of string with and without built-in functions.
Then we will go through introduction to pointer and combination of arrays and pointers.
We will understand user defined functions and built-in functions.
We will learn different form of function.
Then we will learn Recursive functions with on example.
Then we will learn User-defined data types such as structures, Union and enumeration.
We will learn dynamic memory allocation and different dynamic memory allocations functions.
We will learn introduction to files and different built-in function of file.