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

  • Home
  • SEARCH
  • 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 3334742
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T23:56:20+00:00 2026-05-17T23:56:20+00:00

I’ve been working on a class assignment for C++ and we’re required to acquire

  • 0

I’ve been working on a class assignment for C++ and we’re required to acquire input from a text file and assign those values to an array….one is a string, the second an int, and the third a double.

We’ve only been introduced to arrays and I don’t know anything yet about pointers or linked lists, or any of the higher end stuff, so I feel like I’m somewhat limited in my options. I’ve worked all day trying to figure out a way to acquire input from the text file and assign it to the appropriate array. I’ve tried to use getline to read the input file and set a delimiter to separate each piece of data but I get an error when I try to use it more than once. From what I’ve read, this has to do with how I’m overloading the function but I’m at a loss at resolving it. Every explanation I’ve read about it goes beyond my current level of familiarity. Right now, I’m focused on this fragment of code:

for (int i = 0; i < EMP_NUM; i++) // Get input from text file for names.
    getline(inFile, nameAr[i], '*');

for (int i = 0; i < EMP_NUM; i++) // Input for hours.
    getline(inFile, hoursAr[i], '*');

for (int i=0; i < EMP_NUM; i++) // Input for hourly rate.
    getline(inFile, hrateAr[i], '*');

I’m trying to use getline three times and write the data to three separate arrays, then make a series of calculations with them later and output them to another text file. The first instance of getline doesn’t produce any compiler errors but the latter two do. I’m not quite sure of another solution to get the data into my arrays, so I’m at a loss. Any help would be great!

  • 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-05-17T23:56:20+00:00Added an answer on May 17, 2026 at 11:56 pm

    1) Instead of three different iteration, use only one

    2) Pass string object in getline instead of pointers

    string buf;
    for (int i = 0; i < EMP_NUM; i++) // Get input from text file for names.
    {
        getline(inFile, buf, '*');
        nameAr[i] = buf;
        getline(inFile, buf, '*');  //assuming delimiter is again *
        hoursAr[i] = atoi(buf.c_str() );  //C way to doing it...however in c++ u have to use stringstreams....
        getline(inFile, buf);
        hrateAr[i] = atof(buf.c_str() );;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

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.