Is there anyway to go through a loop to to condense this?
something like...
for(int i = 1; i <= 20; i++)
{
struct Songs song + i; song + i.count = 0;
}
I know that for loop won't work that way, but is there some way to do something like that?
Seriously, if you've gone as far as structs but you can't figure out when to use arrays maybe you should take a step back and make sure you really do understand.
Then you need to take a step forward (or is it sideways?) and learn about 'classes' and default constructors. Redundent declarations like this are something you'd see in a script not an object oriented language.