Intializing a Boolean Array [Solved]
I get this error
Code:
error C2440: 'initializing' : cannot convert from 'bool' to 'bool [3]'
when i do this
Code:
bool flag[3] = true;
How do i make them all true?
Code:
error C2440: 'initializing' : cannot convert from 'bool' to 'bool [3]'
when i do this
Code:
bool flag[3] = true;
How do i make them all true?

