The document contains code snippets from multiple C programming practical examples involving functions, pointers, arrays, and parameter passing techniques like call by value and call by reference. Specifically, it includes programs to:
1) Calculate mathematical operations on a number using switch case
2) Check if a number is prime using a user-defined function
3) Sort three numbers in ascending order by passing pointers as arguments
4) Recursively check if a number is prime
5) Sort an array using a pointer
6) Demonstrate call by value parameter passing where the passed values are not modified in the function.