Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
6 views2 pages

List of C Programs

Uploaded by

pavithradev2414
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)
6 views2 pages

List of C Programs

Uploaded by

pavithradev2414
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/ 2

1.

Simple Interest
2. Area and Perimeter of Rectangle
3. Odd or Even
4. Positive, Negative or Zero
5. Greatest of two numbers
6. Greatest of three numbers
7. Print number names using switch...case
8. Simple Calculator using switch…case
9. Sum of Series 1+2+3+...+n
10.Sum of Odd Series 1+3+5+…+n
11.Sum of Even Series 2+4+6+…+n
12.Sum of digits of a number using do…while statement
13.Reverse of a Number
14.Number Palindrome Checking
15.Factorial
16.Multiplication Table
17.Number Pattern
1
2 2
3 3 3
4 4 4 4
5 5 5 5 5
18. Number Pattern
1
1 2
1 2 3
1 2 3 4
1 2 3 4 5
19. Character Pattern
*
* *
* * *
* * * *
* * * * *
20. Swapping using temporary variable.
21. Swapping without using temporary variable.
22. Sum of ten numbers using one dimensional array.
23. Bubble Sort
24. Linear Search
25. Matrix Addition
26. Matrix Subtraction
27. Matrix Multiplication
28. Matrix Transpose
29. Accepting a string using scanf() and print it.
30. Reading a line of text using getchar().
31. To find the length of the string and to concatenate two
strings.
32. String copying
33. To find whether the given two strings are equal or not.
34. String reverse
35. String Palindrome
36. Implementing function with no parameter and no return
value.
37. Implementing function with parameter and no return value.
38. Implementing function with no parameter and with return
value.
39. Implementing function with parameter and return value.
40. Nesting of functions.
41. Factorial using Recursion.
42. Fibonacci series using Recursion.

You might also like