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
List of Programs
I. Data Types, Operators and Expression Evaluation
1. To find Area of Rectangle/Circle/Square 2. To find the Simple Interest and Compound Interest 3. To find the size of the data types in C. 4. To swap two numbers (with and without) using temporary variable. 5. to Find Roots of a Quadratic Equation 6. To perform all arithmetic operations. II. Decision making or selection statements 1. To find the maximum number among 3 given numbers 2. To Check Whether the Character entered is Vowel or Consonant 3. To find the number is even or odd 4. To find the given year is leap year or not 5. To find the entered number is prime or not 6. To calculate average and grade, if given marks of the student using else if or switch case. III. Looping statements 1. To display Fibonacci series 2. To find the factorial of a number 3. To check the entered number is palindrome or not. 4. To find sum of N numbers 5. To reverse digits of a number 6. To Find sum of digits of a number 7. To reverse digits of a number 8. To print Half pyramid of * 9. To print Half pyramid of numbers 10. To print Half pyramid of alphabets 11. To print Inverted half pyramid of * 12. To print Inverted half pyramid of numbers 13. To print Full pyramid of * 14. To print Full pyramid of numbers 15. To print Inverted full pyramid of * 16. Pascal's triangle 17. Floyd's triangle 18. To find whether entered number is Armstrong number or not. 19. To compute multiplication table and print the output as per the given format. 1*6=6 2 * 6 = 12 . . 10 * 6 = 60 IV. Arrays 1. To search for particular number among N numbers.(1D array). 2. To compute matrix addition 3. To compute matrix multiplication 4. To compute transpose of a matrix. 5. To sort the array of numbers