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.
|
|
You need dynamic memory management, and use the
Note: Never use gets ! It does not do bounds checking and can overflow your buffer |
|||||||||||||||
|
|
You might need to use a character by character (getc()) loop to ensure you have no buffer overflows and don't truncate the input. |
|||||||||
|
|
|
|||||
|
|
I came across the same problem some time ago, this was my solutuion, hope it helps.
|
||||
|
|
I would change @litb's answer to
Keep in mind this is more bare C code than I've written in 11 years. |
|||||||||||
|
|
As suggested, you can use getchar() to read from the console until an end-of-line or an EOF is returned, building your own buffer. Growing buffer dynamically can occur if you are unable to set a reasonable maximum line size. You can use also use fgets as a safe way to obtain a line as a C null-terminated string:
If you have exhausted the console input or if the operation failed for some reason, eof == NULL is returned and the line buffer might be unchanged (which is why setting the first char to '\0' is handy). fgets will not overfill line[] and it will ensure that there is a null after the last-accepted character on a successful return. If end-of-line was reached, the character preceding the terminating '\0' will be a '\n'. If there is no terminating '\n' before the ending '\0' it may be that there is more data or that the next request will report end-of-file. You'll have to do another fgets to determine which is which. (In this regard, looping with getchar() is easier.) In the (updated) example code above, if line[sizeof(line)-1] == '\0' after successful fgets, you know that the buffer was filled completely. If that position is proceeded by a '\n' you know you were lucky. Otherwise, there is either more data or an end-of-file up ahead in stdin. (When the buffer is not filled completely, you could still be at an end-of-file and there also might not be a '\n' at the end of the current line. Since you have to scan the string to find and/or eliminate any '\n' before the end of the string (the first '\0' in the buffer), I am inclined to prefer using getchar() in the first place.) Do what you need to do to deal with there still being more line than the amount you read as the first chunk. The examples of dynamically-growing a buffer can be made to work with either getchar or fgets. There are some tricky edge cases to watch out for (like remembering to have the next input start storing at the position of the '\0' that ended the previous input before the buffer was extended). |
||||
|
|
|
If you are writing simple programs like these, then you should seek something other than C. If you must use C, then use a library which gives you this functionality in a tried and tested way. Also, listen closely, I'll only say this once. If you code uses GPL code by dynamic IT DOES NOT HAVE TO BE RELEASED UNDER THE GPL! The press to the contrary is scare mongering and if it were true then all programs released to run on Linux would need to be GPL'ed as they must eventually link against GLibC. |
|||
|
|
Are you asking about the argv/argc for the command line for your process, or are you asking about console input while the program is running? Your title is inconsistent (to me) with the content of your question. EDIT if so use if so use int main(int argc, char *argv[]); argc and argv argument |
||||
|
|
This function should do what you want:
I hope this helps. |
|||||||
|
|
A very simple implementation to read line for static allocation.
|
||||
|
|
|
If you need a C readLine function somewhat like the C++ like getline function that gets a line into a string of any length from file or keyboard ... you will like this: |
|||
|
|
|
So, if you were looking for command arguments, take a look at Tim's answer. If you just want to read a line from console:
Yes, it is not secure, you can do buffer overrun, it does not check for end of file, it does not support encodings and a lot of other stuff. Actually I didn't even think whether it did ANY of this stuff. I agree I kinda screwed up :) But...when I see a question like "How to read a line from the console in C?", I assume a person needs something simple, like gets() and not 100 lines of code like above. Actually, I think, if you try to write those 100 lines of code in reality, you would do many more mistakes, than you would have done had you chosen gets ;) |
|||||||||||||
|