Hey! Could someone help me with an array of characters?
I need to make an array of stars (*) that corresponds to a number that an user types in, something like this:
chars = 4;
int length [chars] = "*";
^ this however, doesn't compile. I need the length array contain 4 stars.