Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8454029
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T11:55:14+00:00 2026-06-10T11:55:14+00:00

I can get getline() to work with cin (getline(cin,line)), but when I open a

  • 0

I can get getline() to work with cin (getline(cin,line)), but when I open a stream, it won’t read the line from the file. The file contains a list of elements from the periodic table.

for Example:
H
He
O
etc…

EDIT:

However, when I try to cout the newly read line, it doesn’t put it into var symbol at the line:
cout << “symbol: ” << symbol << endl;

It doesn’t give me anything out, but it should return the first element (H).

#include <fstream>
#include <iostream>
#include <vector>
#include <string>

using namespace std;

void print(vector <string> x)
{
    cout << "list of elements:" << endl;
    for (int i = 0; i < x.size(); ++i)
    {
        cout << x[i] << endl;
    }
}

int main(int argc, char** argv) 
{
    string symbol;
    vector <string> elementlist;
    ifstream readin;

    readin.open("Elements.txt");
    getline(readin,symbol);
    cout << "symbol: " << symbol << endl;
    while (!readin.good())
    {
        elementlist.push_back(symbol);
        getline(readin,symbol);
    }
    print (elementlist);
    return 0;
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T11:55:16+00:00Added an answer on June 10, 2026 at 11:55 am

    I’d do it something like this:

    #include <string>
    #include <iostream>
    #include <fstream>
    #include <vector>
    #include <iterator>
    
    class line {
        std::string data;
    public:
        friend std::istream &operator>>(std::istream &is, line &l) {
            std::getline(is, l.data);
            return is;
        }
        operator std::string() const { return data; }    
    };
    
    int main() {
        std::ifstream readin("Elements.txt");
    
        // Initialize vector from data in stream:
        //
        std::vector<std::string> 
            element_list((std::istream_iterator<line>(readin)),
                          std::istream_iterator<line>());
    
        // write data from vector to cout:
        //
        std::copy(element_list.begin(), element_list.end(),
                 std::ostream_iterator<std::string>(std::cout, "\n"));
    
        return 0;
    }                              
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to read from a file, but the only thing I get on
I can get the file path with: (message (file-name-directory (or buffer-file-name load-file-name))) But if
I'd like to read line from file with fstream (I used this before with
I can easily skip the header of a data file using getline, but then
I can't get files in Xcode to be read. I've tried everything from putting
I can get this to work: [<DllImport(user32.dll)>] extern bool GetClientRect(nativeint, RECT*) let getClientRect hwnd
You can get a list of databases using PRAGMA database_list or a list of
I'm trying to make a simple version of getline. It should read a line
How do I read data from a file if my file is like this
I have an open input file stream. It is able to open the other

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.