Hello,
I've copied a multiarray into another multiarray and can't figure out how to convert an int of 1 into an asterik which is ascii 42 I believe. I need help to replace all 1's to an asterik. I've tried static cast which my instructor suggested but I must be doing it wrong, it didn't work and I tried numerous ways.
offScreenArray[row][col] = onScreenArray[row][col];
while(offScreenArray[row][col] == 1)
offScreenArray[row][col] = static_cast<char>('*');