152 Posted Topics
Re: [url]http://www.acm.uiuc.edu/webmonkeys/book/c_guide/[/url] See section 2.12.3 - File & 2.12.5 Character I/O | |
Re: I'm posting this very small insertion sort routine in C - well after your post, and possibly a homework deadline, so you can see what one looks like. [code] typedef THING unsigned long; /* n= number of elements in *input */ void insertion(THING *input, int n) { int i=0, j=0; … |
The End.