The document contains C code examples for various algorithms and programs including:
1. A program to check if a year is a leap year by checking if the year is divisible by 400, 100, or 4.
2. Code to add the digits of a number by extracting the remainder of successive divisions by 10.
3. Code to convert a decimal number to binary using bitwise operators.
4. Code to store the binary conversion in a string using pointers and dynamic memory allocation.
5. Programs to check for palindrome numbers, print patterns like pyramids and triangles, calculate Fibonacci series with and without recursion, perform linear and binary search of arrays, insert elements into arrays, and sort arrays using