I'm a writing a DTD for an XML document that has <students>
as its root element and may contain 0+ <student>
elements.
What is the difference between declaring
<!ELEMENT students (student)*>
and
<!ELEMENT students (student+)>
They are both validating.