Semester: FALL 2019
Assignment No. 1
Due date: 13 May 2019
![]() |
CS201 ASSIGNMENT 1 SOLUTION SPRING 2019 |
CS201 Assignment_1 Solution SPRING_2019 ———————- Download
![]() |
CS201 ASSIGNMENT 1 SOLUTION SPRING 2019 |
CS201 Assignment_1 Solution SPRING_2019 ———————- Download
![]() |
CS201 ASSIGNMENT 1 SOLUTION FALL 2018 |
DON’T miss these important instructions:
Please read the following instructions carefully before submitting assignment:
It should be clear that your assignment will not get any credit if:
§ The assignment is submitted after due date.
§ The assignment is submitted via email.
§ The assignment is copied from Internet or from any other student.
§ The submitted assignment does not open or file is corrupt.
§ It is in some format other than .cpp.
1) Note: You are supposed to submit your assignment in .cpp format. Any other formats like scan images, PDF, zip, doc, rar and bmp etc will not be accepted. All types of plagiarism are strictly prohibited.
For any query about the assignment, contact at CS201@vu.edu.pk
Loops
Switch, break, continue
Functions
Arrays
Pointers
Write a program which defines three functions:
genRandNum()
findMinNum()
swapValue()
genRandNum(): This function will generate 5 random numbers in range 1-100 and store these numbers in array and print array on console.
Now start sorting these numbers in ascending order (lower to higher) by following the given steps:
1. findMinNum(): This function will search smallest number in unsorted part of array.
2. If leftmost number is the smallest number in unsorted array then no need to swap it otherwise swap the smallest number with left most unsorted number using swapValue() function. Now this number is fully sorted.
3. Repeat the above 2 steps until the whole array get sorted.
Sample Output:
CS201 Assignment_1 Solution FALL_2018 ———————- Download