CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4

Threaded View

  1. #1
    Join Date
    Feb 2005
    Posts
    35

    Two Questions - Return at end of paired data points in CSV file, and how to "break"

    I am using the following line to write pairs of data files. I am hoping to create a CSV file.

    CODE fprintf(f, "%d,%f", Universe.year, Universe.R); CODE


    This simply writes pairs of data on the same line. I'd like pairs of data on individual lines. This means I need to insert a line feed, somehow, perhaps via a character insertion. Could someone please tell me how to do this easily?

    Finally, my memory is very vague on C programming. Is the proper means to exit a loop an if then statement containing the term "break"? How would that be implemented?

    Thank you!
    Last edited by Protocol; January 24th, 2013 at 01:54 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured