Welcome to my C Programming Lab submissions repository! In this repository, you will find solutions to various programming tasks assigned during the C Programming Lab. Below is a list of the programs along with brief descriptions for each.
-
Fahrenheit to Celsius Converter
- Description: This program converts degrees Fahrenheit into degrees Celsius using a simple formula.
-
Triangle Area Calculator
- Description: This program calculates the area of a triangle given its sides as input using functions.
-
Quadratic Equation Solver
- Description: This program finds all possible roots of a quadratic equation.
-
Vowel or Consonant Checker
- Description: Determine whether the entered character is a vowel or a consonant using a switch case statement.
-
Even Number Printer
- Description: This program prints even numbers from M to N where M and N are user-defined values.
-
Sum of Squares of Odd Numbers
- Description: Calculate the sum of squares of the first 'n' odd numbers where 'n' is a user-defined value.
-
Matrix Addition
- Description: Perform the addition of two matrices.
-
String Manipulation
- Description: Copy one string to another string and find its length without using built-in functions.
-
Student Details
- Description: Create a student structure, read details of two students, and print the student with the highest score.
-
Arithmetic Operations with Pointers
- Description: Perform arithmetic operations (addition, subtraction, multiplication, division, and remainder) on two integers using pointers.