0% found this document useful (0 votes)
1 views1 page

LAB Report Index

The document lists various C programming problems, including calculating areas and perimeters of geometric shapes, temperature conversion, number classification, and operations on arrays and strings. It also includes tasks related to file handling and data structures. Each problem is numbered and provides a brief description of the required functionality.

Uploaded by

zahidbm842
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
1 views1 page

LAB Report Index

The document lists various C programming problems, including calculating areas and perimeters of geometric shapes, temperature conversion, number classification, and operations on arrays and strings. It also includes tasks related to file handling and data structures. Each problem is numbered and provides a brief description of the required functionality.

Uploaded by

zahidbm842
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

SL Problem Statement Page

1 C program to find area and perimeter of a triangle ( Three sides triangle are given )

2 C program to find area and perimeter of a rectangle

3 C program to find area and circumference of a circle ( Use π as a symbolic constant )

4 C program to convert the given temperature in Fahrenheit to Celsius

5 C program to determine whether a number is odd or even

6 C program to determine the largest element among three numbers

7 C program to find all possible roots of a quadratic equation

8 C program to find the factorial of an integer

9 C program to find the first n in Fibonacci numbers

10 C program to determine and print the sum of the following harmonic series for a given value of
n:s = 1/1! + 2/2! + 3/3! + 4/4! + 5/5! + 6/6! + 7/7!.....

11 C program to display all elements of an array and also display sum of elements of that array

12 C program to find the largest element from an array

13 C program to search an element from an array

14 C program to find sum of two matrices of size 3x3

15 C program to determine whether a string is palindrome or not

16 C program to perform all basic operations on string

17 C program using pointers to read an array of integers and print its elements in reverse order

18 C program to record students information according to their merit position using structure

19 C program to read data from keyboard write it to a file called INPUT again read the same data
from the INPUT file and display it on the screen

20 C program to copy / append one file into another

You might also like