Fairly simple question

Started by
1 comment, last by Kitasia 19 years, 7 months ago
How do I make an array with all 1 value. It's driving me crazy!!!! example int array[10] = {5}; That's what I tried but no luck. I want all the variables in the array to equal 5 without doing them one by one or typing 5 over and over again, AND without using a for loop. Thanks in Advance!
Advertisement
Short of writing a program to generate source code with a bunch of 5's for you, you can't. Just use a for-loop.
Ahh I should've known. Thanks anyway!

This topic is closed to new replies.

Advertisement