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 EXPERIMENTS
Sr. Name of Experiment Date Page Signature
Write a Program in C to find out the factorial of a number using 1 a loop recursion (Using User Input). Write a Program in C to find out if the input number is 2 Armstrong or not using a loop (Using User Input). Write a Program in C to find out if the input number is 3 Palindrome or not using a loop (Using User Input).
Write a Program in C to find out the 1st 10 Fibonacci series
4 numbers using a loop (Using User Input).
Write a Program in C to find out the factorial of a given number
5 using a loop (Using User Input).
Write a Program in C to find out whether a given number is
6 prime or not using a loop (Using User Input).
Write a Program in C to print the below patterns using loops:
a. * b. * * * * * c. * * * * * ** **** **** 7 *** *** *** **** ** ** ***** * *
Write a program in C to take input of two 2D matrix from the
8 user to show the output of performing Addition or Subtraction operation. Write a program in C to take input of two 2D matrix from the 9 user to show the output of performing matrix multiplication operation. Write a program in C to take input of a 1D array from the user 10 to perform Linear Search.
Write a program in C to take input of a 1D array from the user
11 to perform Binary Search.
Write a program in C to take input of a 1D array from the user
12 to perform Bubble Sort.
Write a program in C to take input of a 1D array from the user
13 to perform Selection Sort.
Write a program in C to take input of a 1D array from the user
14 to perform Insertion Sort.
Write a program in C to implement user defined function
15 concept and to implement various programs using ‘call-by- value’ and ‘call-by-reference’.