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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T20:38:17+00:00 2026-05-10T20:38:17+00:00

What is the simplest way to read a full line in a C console

  • 0

What is the simplest way to read a full line in a C console program The text entered might have a variable length and we can’t make any assumption about its content.

  • 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. 2026-05-10T20:38:18+00:00Added an answer on May 10, 2026 at 8:38 pm

    You need dynamic memory management, and use the fgets function to read your line. However, there seems to be no way to see how many characters it read. So you use fgetc():

    char * getline(void) {     char * line = malloc(100), * linep = line;     size_t lenmax = 100, len = lenmax;     int c;          if(line == NULL)         return NULL;      for(;;) {         c = fgetc(stdin);         if(c == EOF)             break;          if(--len == 0) {             len = lenmax;             char * linen = realloc(linep, lenmax *= 2);              if(linen == NULL) {                 free(linep);                 return NULL;             }             line = linen + (line - linep);             linep = linen;         }          if((*line++ = c) == '\n')             break;     }     *line = '\0';     return linep; } 

    Warning: Never use gets()! It does not do bounds checking and can overflow your buffer.

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

Sidebar

Related Questions

What's the simplest way to read datas from a text file into a 1xN
What is the easiest/simplest/cleanest way to: Read an xml file from the filesystem Validate
What is the simplest way to determine the length (in seconds) of a given
What's the simplest way to connect and query a database for a set of
What's the simplest way of blocking a thread until a file has been unlocked
What would be the simplest way to daemonize a python script in Linux ?
What is the simplest way to interact between a SAP OMS and Websphere Commerce?
What is the simplest way (least error-prone, least lines of code, however you want
What is the simplest way to programmatically export Excel data to Matlab?
What is the simplest way to identify and separate GET and POST parameters from

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.