Topics Covered
C programming
Assignment 1
Write a program that checks whether user entered full_name1 and full_name2 match.
For example if user enters
Jake Kirkland and Jake Kirkova
It should return these name does not match And if enters
Jane Doe ad Jane Doe
It should return these name match.
Topics Covered
Assignment 2
- Assign user entered 5 full names to an 5 by 25 char array.
- Sort out the names alphabetically.
- Show both original and sorted list as below
- Hint: Use pointer array and strcmp for comparison.