Introduction

History of C Language

Features of C Language

C Installation

First C Program

Flow of C Program

printf and scanf in C

Variables

Data Types

Keywords

Operators

Comments

Escape Sequence

C if else Statement

C Switch Statement

C Loops

do while loop in C

while loop in C

for loop in C

C break statement

C continue statement

C goto statement

Type Casting in C

functions in C

Call by value and call by reference in C

Recursion in C

Storage Classes in C

Array

Two Dimensional Array

Passing Array to Function

C Pointers

C Pointer to Pointer

Pointer Arithmetic

Dynamic memory allocation

Structure in C

Nested Structure

Union

File Handling

Preprocessor Directives

Macros

#include

Print an Integer Entered by the User

Add Two Integers

Multiply two Floating Point Numbers

Find ASCII Value of a Character

Compute Quotient and Remainder

Find the Size of int, float, double and char

Demonstrate the Working of Keyword long

Swap Two Numbers

Check Whether a Number is Even or Odd

Check Whether a Character is Vowel or Consonant

Find the Largest Number Among Three Numbers

Find all Roots of a Quadratic equation

Check Leap Year

Check Whether a Number is Positive or Negative

Check Whether a Character is an Alphabet or not

Calculate the Sum of Natural Numbers

Find Factorial of a Number

Generate Multiplication Table

Display Fibonacci Sequence

Find GCD of two Numbers

Find LCM of two Numbers

Display Character from A to Z Using Loop

Count Number of Digits of an Integer

Reverse a Number

Calculate the Power of a Number

Check Whether a Number is Palindrome or Not

Check Whether a Number is Prime or Not

Display Prime Numbers Between Two Intervals

Check Armstrong Number

Display Armstrong Number Between Two Intervals

Display Factors of a Number

Code To Create Pyramid and Pattern

Make a Simple Calculator Using switch...case

Display Prime Numbers Between Intervals Using Function

heck Prime or Armstrong Number Using User-defined Function

Check Whether a Number can be Express as Sum of Two Prime Numbers

Find the Sum of Natural Numbers using Recursion

Find the Factorial of a Number Using Recursion

Find G.C.D Using Recursion

Convert Binary Number to Decimal and vice-versa

Convert Octal Number to Decimal and vice-versa

Convert Binary Number to Octal and vice-versa

Reverse a Sentence Using Recursion

Calculate the Power of a Number Using Recursion

Calculate Average Using Arrays

Calculate Standard Deviation

Add Two Matrix Using Multi-dimensional Arrays

Multiply to Matrix Using Multi-dimensional Arrays

Find Transpose of a Matrix

Multiply two Matrices by Passing Matrix to Function

Access Elements of an Array Using Pointer

Find Largest Number Using Dynamic Memory Allocation

Find the Frequency of Characters in a String

Find the Number of Vowels, Consonants, Digits and White space in a String

Find the Length of a String

Concatenate Two Strings

Copy String Without Using strcpy()

Sort Elements in Lexicographical Order (Dictionary Order)

Store Information(name, roll and marks) of a Student Using Structure

Add Two Distances (in inch-feet) System Using Structures

Add Two Complex Numbers by Passing Structure to a Function

Calculate Difference Between Two Time Period

Store Information of Students Using Structure

Store Information Using Structures with Dynamically Memory Allocation

Write to a Sentence to a File

Read a String of Text from File

Display its own Source Code as Output

Code To Create Pyramid and Pattern