Hi..i saw this a randomly..i got some part don't understand:
http://www.daniweb.com/forums/thread214624.html
@ancient dragon's reply
1)
const unsigned int MAX_SIZE = 2;
student array[MAX_SIZE];
Q: Why MAX_SIZE = 2 ?
2)15: void insert(student array[],const unsigned int MAX_STUDENT);
33: void mySort(student array[],const unsigned int MAX)
55: void display(const student array[], unsigned int MAX);
Q: 1. From the function above, why sometime he use MAX sometime use MAX_STUDENT and MAX_SIZE??
2. Is the function must use "const" / "unsigned int"? Can i just declare like void display( student array[], int MAX);??
That all my questions.LOL..Sry for my stpdity
Hope somebody can answer.