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 1038307
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T14:57:33+00:00 2026-05-16T14:57:33+00:00

C++: Using and returning character arrays from functions, return type or reference? I’m trying

  • 0

C++: Using and returning character arrays from functions, return type or reference?
I’m trying to create a null terminated string outside of a function, then run a function which will assign some data to it. For example, char abc [80] is created in main. input() is then run, which will return user input to abc. I figure the two obvious ways to do this are:

1.
Make the input function return the input to a variable in main, something like:

char input ()
{
    char input [80];
    getline(cin, choice);
    return input;
}

int main ()
{
    char choice [80];
    choice = input ();
    ...
}

2.
Pass a character array to the input function my reference, and then put the data in it from there:

...
void input (&variable)
{
    getline(*variable, cin);
    return;
}
int main ()
{
    char choice [80];
    char* pointer;
    input (pointer);
    ...
}

But, I can’t get either of these ways to work. So, what am I doing wrong and how can I fix it?

  • 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-16T14:57:33+00:00Added an answer on May 16, 2026 at 2:57 pm

    Just use standard strings. The insanity of using arrays of constant width has caused at least the company I work four many hundreds of thousands of dollars in development time. The correct answer to you question may be frustrating to you but it really is, “DON’T DO THAT!!!”

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using .Net and Oracle 11g - I've been returning dataTables from a procedure inside
Similar to my question about returning from inside a using statement (whose answer was
I am using oracle jdbc cachedrowset implementation to select several rows returning from a
I'm using Nokogiri to parse an XML response from last.fm. I am currently returning
I'm consuming a JSON WebService by using the WebClient.DOwnloadStringAsync. The returning string contains some
I'm trying to extract a URL from an array using JS but my code
I am facing some problem while returning data from web services. I am using
I am returning some data from the database which is entered using many different
Issue: RODBC (falsely) returning zero rows Situation: I'm using RODBC to connect to a
I am using the GetListItems web service and it is only returning about 50%

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.