Hi, I'm wondering how I would get a random item from a 2D array and print just that item? For example, if I had a 2D Array like:
Code:
char questions[4][60] = {{How can I print item?}, {In a random order?}, {Is it possible?}, {Or Am I really foolish?}
};
I want the output to be:
Is it possible?
But I have to randomly get its indexes and print it.