Recent content by davidsmith315

  1. D

    C/C++ C++ help- my code reads from small files but not large

    Thanks for replies, I tried using half the input file and it failed, but using 1/4 f it worked perfectly. Re M Quck- "For better readability, I would put the treatment of each complete line (everything inside the while(getline) loop) into a subroutine" Sorry to ask but how would I go about...
  2. D

    C/C++ C++ help- my code reads from small files but not large

    Re Hobin: Thanks fo reply It work great if i take the firs 100 lines, or 1000 lines- its only when I run the 6,oookb file it doesntwork
  3. D

    C/C++ C++ help- my code reads from small files but not large

    Hello, I'm trying to make part of a code that reads a csv file with data containing the date and time, and the wind speed at that time, then does various output things. When I copy and paste 1000 entriesinto a csv file and ru it, it works great, but if I use the file that's about 6,000kb it...