1. Study of components of a computer system 2. Program to print Hello world 3. Implicit and explicit type conversion 4. Simple formula based programs (i) Sum of two integers (ii) Product of two floating point numbers (iii) Finding quotient and remainder (iv) Area of a rectangle (v) Circumference of a circle 5. Operators in C (i) Relational, logical and ternary operators (ii) Bitwise operators 6. Conditional statements (i) Even or odd (ii) Find the largest of three numbers using if, else…if ladder and nested if (iii) Arithmetic calculator using switch statement 7. Programs using loops (i) Sum of numbers from 1 to N (ii) Count number of positives, negatives and zeros (iii) Finding square and cube of all numbers from 1 to N (iv) Multiplication table (v) Factorial of a number 8. Programs using arrays (i) Read and print a 1D array (ii) Read and print a 2D array (iii) Array search (iv) Sorting the elements of an array 9. Programs using functions (i) Addition using function (ii) Swapping two numbers using function (iii) Factorial using function