I have a 2d array of size 4X4 that is
int arr[4][4];
i want to initialize this from 1-15 but in random manner not sequential
example
7 8 9 5
1 2 12 14
3 6 10 13
11 4 15 0
I try
random()
function but iam not getting the desired out put...
thanks