cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
Alternative solution to put different in
Alternative solution to put different int variable into one int array?
Mar 7, 2013 at 2:30am UTC
zenniz
(10)
Any alternative solution to put for example int variable A, B, C, D into int Array[4] instead of declaring A = Array[0], B = Array[1] etc... ?
Last edited on
Mar 7, 2013 at 2:46am UTC
Mar 7, 2013 at 6:17am UTC
MiiNiPaa
(8886)
int
Array[4] = {A, B, C, D}
Topic archived. No new replies allowed.