Error - Assigning to an array from an initializer list

Hi,

My code is stuck at this error, how to rectify? It isn't accepting

Can you post the complete error message as shown in the IDE .?

Instead do like this:

volume[0] = '0';
volume[1] = '0';
volume[2] = '0';

or
memcpy(arg1, arg2, arg3); //function

thanx, fixed

1 Like

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.