somebody please help me..
can you tell me about struct in C++..
please give me example and explaination..
faisal_pedaw 0 Newbie Poster
Recommended Answers
Jump to PostA struct is a simple user-defined data type that can contain other (user defined or standard) datatypes. For example, if you wanted to create a struct of golfer names and scores:
struct SGolfer { //struct members go here char * _szName; int _iScore; };
This can now …
All 4 Replies

jencas
faisal_pedaw 0 Newbie Poster
Liszt 23 Junior Poster
skatamatic 371 Practically a Posting Shark
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.