Question 3:
(1 mark, file to be edited: Q3.c)
Your program allows the user to enter an array of 'n' integer numbers, where 'n' is entered from the keyboard (STDIN).
Program to print the even numbers sorted in ascending order. There is a newline character '\n' between any two printed numbers.
Below is an example when 'n' = 6; elements: {2, -4, 5, 8, 15, 0}
3 of 3
Paper No: 6
6
2-4 5 8 15 0
OUTPUT:
-4
0
2
8
Press any key to continue