Writ a program in C that inputs array of n size from keyboard. Your program should implement the following functions. 1. inputStudentData: This function will input an array of n size. Size of array will be entered by user. This array will input the student’s ids. Array can store only three-digit integer as student id. If invalid is entered by user, it will display an error message i.e., “Enter valid id” and will again input the student id. This function will also print the data entered by user. 2. removeStudent: This function will ask the user to input the id he wants to remove. After user input it will remove the id from array. After removing the id, this function will also print student’s data. 3. updateStudentID: This function will update the student id by new ID 999 only if the id value is greater than 500 and the position of that id is an odd number. Once the id is updated, the function will also print student’s data.
Writ a
1. inputStudentData: This function will input an array of n size. Size of array will be entered by user. This array will input the student’s ids. Array can store only three-digit integer as student id. If invalid is entered by user, it will display an error message i.e., “Enter valid id” and will again input the student id. This function will also print the data entered by user.
2. removeStudent: This function will ask the user to input the id he wants to
remove. After user input it will remove the id from array. After removing the id, this function will also print student’s data.
3. updateStudentID: This function will update the student id by new ID 999 only if the id value is greater than 500 and the position of that id is an odd number. Once the id is updated, the function will also print student’s data.
Step by step
Solved in 3 steps with 1 images