Introduction to C language
  • WELCOME to our C Programming Course
  • THEORY: History & Structure of C Programming Language
  • Form of a C Program
  • Quiz: Form of a C Program
  • THEORY: The Form of a C Program
  • Form of a C Program - With an example
  • THEORY: Compiling a C Program
  • Compiling, linking and running C program
  • Types of errors
BONUS: Get a FREE fantastic IDE (Integrated Development Environment) here!
  • How to: Download and Install your FREE IDE from here
  • How to: Watch this course in HD
Basic elements of C program
  • Introduction to Basic elements of C Language
  • THEORY: The Basic Elements of C Programming
  • Variables
  • Categories of Variables
  • Constants
  • Identifiers and Rules of Identifiers
  • Data Types Introduction
  • Integer DataType
  • Float and Double
  • Character DataType
  • Type casting
Operators
  • Introduction to Operators
  • Arithmetic Operators
  • Relational Operators
  • Logical Operators
  • Conditional Operators
  • Assignment Operators
  • Increment Decrement Operators
  • Bitwise Operators
Input Output Statements
  • Reference Material: ASCII TABLE - downloadable
  • Introduction to Input Output statements
  • The printf Statement
  • printf Statement Formats
  • printf Program - Hello World
  • printf Program - Sum of Two integers
  • printf Program - Area of circle by r
  • Printf Program - Largest of two assigned values
  • printf Program - Area of a Rectangle
  • The Scanf Statement
  • scanf Program - Sum of two input numbers
Conditional Statements
  • Introduction to Conditional Statements
  • The IF Statement
  • 'if' statement program - Largest of two numbers
  • if..else Statement and Program to check if number Even or Odd
  • if Statement Program - Positive Negative or Zero numbers
  • if Statement Program - Largest of 3 numbers
  • if Statement Program - Number even or odd
  • if..else Program - Largest of 2 numbers
  • if..else Program - Given year is a Leap year or not
  • if..else Program - Check Variable is Integer or Float
  • if..else Program: Check Upppercase Lowercase
  • if..else Program: If character is Alphabet
Loop Statements
  • Introduction to loops
  • The While Statement
  • While Program - Display 5 to 1 in reverse order
  • While Program - Display 1st 10 Even Numbers
  • While Program- Display 1st ten Odd Numbers
  • While program - Sum of 1st Five Natural Numbers
  • While Program - Sum of Arithmetic Series
  • While Program - Reverse Digits of Given Number
  • The Do..While Statement
  • Do..While Program - Factorial of N
  • Do..While Program - Arithmetical Operation of User Choice
  • The for Statement
  • While Program - Sum of Digits of Given Number
  • Do..While Program - Check Number is Palindrome
  • Do..While Program - Sum of Arithmetic Series
  • Do..While Program - 2nd Example - Sum of Arithmetic Series
  • The for Statement - Syntax Continued - Multiple Initializations - with Program
  • for statement - Program to Display 1st ten Odd Numbers
  • for statement Program to Find Factorial of N
  • for statement Program to Find Sum of Digits
  • For statement Program: to Find Sum of Arithmetic Series
  • For statement Program to Find Sum of Arithmetic Series - 2nd Program ver 2
  • For statement Program: To Check for Prime Number
  • Nested Loops - for Statement Program
  • Nested Loops - An Example Program
Arrays
  • Introduction to arrays
  • Declaring Arrays
  • Initializing Arrays
  • Storing and accessing Array Elements
  • Single Dimensional Arrays - Program to read and display 10 numbers
  • Two Dimensional Arrays
  • Storing and Accessing fromTwo Dimensional Arrays
  • Multi-Dimensional Arrays - Program to read and display MxN array
Strings
  • Introduction to Strings
  • How to assign, read and display Strings
  • Reading String data
  • Reading String data - Continued - Other techniques
  • Three ways of Displaying String data