Use of code tags on the post is strongly recommended.
Do not use system("PAUSE");. There are portable alternatives. See the sticky thread.
Consider implementing an operator>> for inf.
Are you sure that the file has at least 100 entries?
You don't deallocate at end the memory allocated by new[]. You should. Better yet, you could consider standard containers instead of new[], or at least a smart pointer type instead of plain pointer.