Search:

Type: Posts; User: hamilton73

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    2,074

    When you create the file open it to append ...

    When you create the file open it to append

    ofstream file(file_name,ios::app);
    file<<surname<<endl;
    .;
    .;
    This will automactically append anything you output to the end of the file...
  2. how do access and read data in from an excel file

    I am writing a program that needs to read in an excel file and I would rather not resave the file as a text file. So the question is can I just open a file stream for the excel file and read the...
Results 1 to 2 of 2