char board[3][3] = {
{'1','2','3'},
{'4','5','6'},
{'7','8','9'}
};
in our case board = &board[0][0]
so why we need two indirection such as **board in order to get the value '1' instead of just using one indirection such as *board?
This post has been edited by JackOfAllTrades: 06 March 2011 - 05:41 PM
Reason for edit:: Added code tags

New Topic/Question
Reply




MultiQuote




|