S
Sava Mikalaèki
Hi there!
My problem consists in this:
When I define an array of char type like this:
char a[]={'a','aa','aaa'};
I get a lot of warnings like
warning C4305: 'initializing' : truncation from 'const int' to 'char'
I've tryed to define the size of it (char a[10] ) but I get same warnings
every time.
What's wrong with this?
Poz,
Sava
My problem consists in this:
When I define an array of char type like this:
char a[]={'a','aa','aaa'};
I get a lot of warnings like
warning C4305: 'initializing' : truncation from 'const int' to 'char'
I've tryed to define the size of it (char a[10] ) but I get same warnings
every time.
What's wrong with this?
Poz,
Sava