Search:
Forum
General C++ Programming
arrays
arrays
May 14, 2011 at 8:36am UTC
amal rauf
(4)
can i ask the user to enter values for the array?
if so..then kindly tel me how.
May 14, 2011 at 11:23am UTC
Zeillinger
(121)
Using a loop.
1
2
3
4
int
array[4];
for
(
int
i = 0; i < 4; i++) { cin >> array[i]; }
Topic archived. No new replies allowed.
C++
Information
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs