I need to fill an array with a string that is input by a user. For example user enters such string like these: "St/80" We know the length before user enters it btw. I wanna do this:
array[0]='S';
array[1]='t';
array[2]='/';
array[3]=8;
array[4]=0;