ISC Paper 2019 Matrix Program
ISC Computer Science Practical Paper - 2019 Question 2 Solved Write a program to declare a single dimensional array a[] and a square matrix b[][] of size N , where N>2 and N<10 . Allow the user to input positive integers into the single dimensional array . Example :- Input : N = 3 Enter elements of single dimensional array : 3 1 7 Output : Sorted Array : 1 3 7 Filled Matrix 1 3 7 1 3 1 ...