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
Experts Please help
Experts Please help
Apr 18, 2008 at 6:38am UTC
bashi
(16)
i want to create a construct which enables me to have a array of records from different types
ie
the student array consists of name as string & marks as integer
thank you
Apr 18, 2008 at 7:15am UTC
ropez
(310)
1
2
3
4
5
6
struct
Element { string name;
int
marks; }; Element student[N];
Apr 18, 2008 at 8:20am UTC
bashi
(16)
can i use all the loops on this code
plz help
i am a beginner
Last edited on
Apr 18, 2008 at 8:20am UTC
Topic archived. No new replies allowed.