Shuffle Items of an Array in C
C does not come up with C++ like shuffle or random_shuffle templates. So an easy trick to shuffle the items of an array could be -
Create an integer array of indexes
Shuffle the array of integer indexes
Access the array of items with the new shuffle...
blog.mdminhazulhaque.io2 min read