home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / lang / c / 12935 < prev    next >
Encoding:
Text File  |  1992-08-29  |  1.4 KB  |  32 lines

  1. Newsgroups: comp.lang.c
  2. Path: sparky!uunet!cs.utexas.edu!torn!watserv2.uwaterloo.ca!watmath!thinkage!atbowler
  3. From: atbowler@thinkage.on.ca (Alan Bowler)
  4. Subject: Re: How to fprintf two column
  5. Message-ID: <1992Aug29.011159.14523@thinkage.on.ca>
  6. Organization: /etc/organization
  7. References: <5663.87.uupcb@wugate.wustl.edu>
  8. Date: Sat, 29 Aug 1992 01:11:59 GMT
  9. Lines: 21
  10.  
  11. In article <5663.87.uupcb@wugate.wustl.edu> jon.ault%travel@wugate.wustl.edu (Jon Ault)  writes:
  12. >VA. I need the following output to a file:
  13. >  . 1.2     2.3
  14. >  . 1.3     2.4                    1.4     2.5
  15. >  . ....
  16. >  . which contains two columns. They are not generated at the same 
  17. >  . time, i.e. at the first the first column is generated and then 
  18. >  . write to a file. then the file is rewinded and the second column is 
  19. >  . generated. Now I need write the second column to that particular 
  20. >  . place, say begin with 10th column. I have tried fseek() but it  
  21. >  . seems to me not working. (?)
  22. >
  23. >I would approach this by writing the first column out to a temp file, 
  24. >then reading it back in and appending the second column, writing that 
  25. >out to the final output file.  
  26.  
  27. Right solution.  You might hunt arround for an existing utility to
  28. to this column concatenation.  Its trivial in some editors, and often
  29. statistical packages have some side tools that do exactly this with
  30. files.  It is not hard to "rool your own" but why bother if the utility
  31. is already on the system.
  32.