Forum: C Nov 7th, 2006 |
| Replies: 26 Views: 4,646 You use list = names which assigns names to list in your code. You may mean to have that switched. Also, why not read directly into names? I am pretty sure your dispute between 1 and 2 dimensional... |
Forum: C Nov 7th, 2006 |
| Replies: 26 Views: 4,646 Acquire,
The first thing I noticed was this char names[99][28]= {" "};. If you get an error with that line, try using single quotes instead of double quotes. Double quotes are associated with... |