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

C & Python Programs

The document lists 20 different programming tasks to be developed in C, covering a range of topics including arithmetic operations, number properties, and sorting algorithms. Each task specifies a particular functionality, such as checking for prime numbers, generating Fibonacci series, and sorting lists. The tasks are designed to enhance programming skills and understanding of fundamental concepts in C.

Uploaded by

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

C & Python Programs

The document lists 20 different programming tasks to be developed in C, covering a range of topics including arithmetic operations, number properties, and sorting algorithms. Each task specifies a particular functionality, such as checking for prime numbers, generating Fibonacci series, and sorting lists. The tasks are designed to enhance programming skills and understanding of fundamental concepts in C.

Uploaded by

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

List of Programs in C

1. Develop a Program in C to perform arithmetic operations on two numbers


2. Develop a Program in C to accept age of person and display Person is eligible for vote or not
3. Develop a Program in C to find largest of two numbers
4. Develop a Program in C to find largest of three numbers
5. Develop a Program in C to check given number is Even or Odd
6. Develop a Program in C to find roots of a Quadratic Equation
7. Develop a Program in C to display the factors of given number
8. Develop a Program in C to find the following
a) No. of digits in a number
b) Sum of digits of a number
c) Largest and Smallest numbers
d) Reverse of the given number
9. Develop a Program in C to check given number is palindrome or not
10. Develop a Program in C to check a given number is Prime or not
11. Develop a Program in C to generate prime numbers less than given number n
12.Develop a Program in C to display Even numbers & count less than given number n
13. Develop a Program in C to check a given number is perfect number or not (sum of factors
excluding number is same number)
14. Develop a Program in C to generate fibonacci series for n numbers
15. Develop a Program in C to generate fibonacci series less than n
16. Develop a Program in C to find the following
a. Positive and negative numbers
b. Total of given list of numbers
c. Even and Odd numbers
d. Largest and Smallest in a list of given numbers
e. Reverse the given list of numbers
17. Develop a Program in C to sort a list of numbers using Bubble Sort / Quick Sort
18. Develop a Program in C to Search for an element in a given list of Numbers using Linear
Search or Binary Search Technique
19. Develop a Program in C to accept two sorted lists A & B of numbers and Merge into Single
Sorted List
20. Develop a Program in C to split the list of numbers from given location into two lists

You might also like