Problem Solving Through Programming in C Week 9: Programming Assignments Jul-Dec 2022
bySimple Edu Talk-
0
NPTEL PROGRAMMING ASSIGNMENTS
Problem Solving Through Programming in C
Week-09 Program-01
Last Day of Submission: 29-Sep-2022
Write a program to print all the locations at which a particular element (taken as input) is found in a list and also print the total number of times it occurs in the list.
Week-09 Program-02
Last Day of Submission: 29-Sep-2022
Write a C program to search a given element from a 1D array and display the position at which it is found by using linear search function.
Week-09 Program-03
Last Day of Submission: 29-Sep-2022
Write a C program to search a given number from a sorted 1D array and display the position at which it is found using binary search algorithm.
Week-09 Program-04
Last Day of Submission: 29-Sep-2022
Write a C program to reverse an array by swapping the elements and without using any new array.