Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
c++ structure
Name: lqertough Date: April 29, 2009 at 02:09:24 Pacific OS: Windows XP unix linux Subcategory: C/C++
Comment:
• Describe structure with name STUDENT, containing following fields: NAME – a surname and the initials; Group number; Progress (an array of five elements). • Write the program which is performing following actions: Input from the keyboard of data in array which consists from ten structures of type STUDENT; To order records alphabetically; Output on the display surnames and numbers of groups for all students who have at least one estimation 2; If there are not such students, output the corresponding message.
Summary: Hello, I have a very basic question about C structures. Say I have a structure definition like: typedef struct test_s { color_types color ; } test_t; What is test_s and what is test_t? Are these ...
Summary: Hi, This is a C programming problem. I've a structure with 100 members. How can i print out all 100 members of the structure, and the respective values they hold, without having to output each member ...
Summary: Hai, //Sample Code.. Struct Test { int iVar; int Calculate(int iFirst,iSecond); }; Please clear the following problems 1.How to implement the C structure function outside? 2.How to call the stru...