Stuck on Output
Greetings fellow Coders, Been working on a larger form of code that will print out a Series of symbols equal to a randomly generated number. In this Code i have it made where it passes through a function going into a reference variable and using a separate function to put it in an array then output it out as a Cstring. Unfortunately i got through what i believe to be the majority of the code done properly, but i'm stuck on the last bit being the output segment in the below code. https://code.sololearn.com/c15j45QoX36I/#cpp In coding i've done thus far, i have a random number become generated by having it pass through the function refrandom, which creates a random number between 1 and 30. Afterwards in pointfill it will generate the Designated symbol and put it into the array. Finally it should output the amount of symbols put into the array out as a cstring. However i'm not sure if I did that correctly enough, i thought i had a grasp on cstring. But it appears i'm still a bit of a novice at it.