Hint for sorting brothers (from structure person) by age- pseudocode
Hello!
Plese, can someone give me just a hint how to ORGANISE program (pseudocode) sorting 3 or more persons borther by age?
Many thanks!
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
...
struct person{
char name[20];
char surname[20];
int age;
};
int main(){
person brother1={...
person brother2={...
return 0;
}
|
Last edited on
Topic archived. No new replies allowed.