How can I read and store strings in C from stdin until a blank line is entered?

  • Thread starter Thread starter dwx1
  • Start date Start date
  • Tags Tags
    Reading Strings
Click For Summary
SUMMARY

The discussion focuses on reading and storing strings in C from standard input (stdin) until a blank line is entered. The original code fails due to improper string comparison using '!=' and incorrect memory handling when storing strings. Key solutions include using the strcmp function for string comparison and allocating memory for each string using malloc() or declaring a two-dimensional array with char strings[LINE_CAP][MAX_LENGTH];. The final working solution involves using fgets for reading lines and ensuring proper memory allocation.

PREREQUISITES
  • Understanding of C programming language
  • Familiarity with string manipulation functions like strcmp and strcpy
  • Knowledge of dynamic memory allocation using malloc()
  • Experience with input functions such as scanf and fgets
NEXT STEPS
  • Learn about memory management in C, specifically using malloc() and free()
  • Explore the differences between scanf and fgets for reading input
  • Study string handling in C, focusing on functions like strcpy and strlen
  • Investigate error handling techniques for input operations in C
USEFUL FOR

C programmers, software developers, and students learning about string manipulation and memory management in C.

dwx1
Messages
6
Reaction score
0
I have to read a list of strings in from stdin and store them, stopping when a blank line is entered. Here's what I tried...
Code:
        const int LINE_CAP = 100;
        const int MAX_LENGTH = 80;

        char *strings[LINE_CAP];
        int strings_index = 0;
        char buffer[MAX_LENGTH];

        printf("%s", "Enter words:\n");
        scanf("%s", buffer);
        while(buffer != "")
        {
                        strings[strings_index] = buffer;
                        strings_index++;
                        scanf("%s", buffer);
        }

No luck. Does anyone know how to do it?
Thanks.
 
Technology news on Phys.org
is that the proper way to declare an array of strings? if it is then "" may not be the correct termination for a blank.
 
There's quite a few problems with this code.

First of all, you can't do things like buffer != "" in C. To compare strings you'll need to use the strcmp function. Doing buffer != "" just compares two pointers, which is not at all what you want.

Second, when you do strings[string_index] = buffer, it does not copy the contents of buffer into strings[string_index]. It merely sets strings[string_index] to point to the same location in memory as buffer. That's certainly not what you want to do. Buffer gets overwritten every pass through the loop.

Third, there's no guarantee that the lines you read in will fit into buffer. You need to use a formatting option like %79s in scanf to ensure that it doesn't try to read data in past the end of the buffer (and you'll have to make sure that the last character in the string is a NUL, or else functions like strcpy and strcmp and printf will not work). You may want to consider using fgets instead. In fact, since you want to read in lines, you may want to use fgets anyway; scanf will stop when it hits whitespace, not when it hits the end of a line.
 
Ok, I thought I got what you were saying, but I seem to be confused...

So I tried using while(strcmp(buffer, "")), but that doesn't stop it when I
enter a blank line.

And I tried doing *strings[strings_index] = buffer, that didn't work either.

I'm kind of lost again.
 
Last edited:
dwx1 said:
Ok, I thought I got what you were saying, but I seem to be confused...
So I tried using while(strcmp(buffer, "")), but that doesn't stop it when I
enter a blank line.
And I tried doing *strings[strings_index] = buffer, that didn't work either.
I'm kind of lost again.

scanf discards whitespace. If you enter a blank line it skips over it and keeps waiting for you to enter data.

To copy buffer into strings[strings_index] you can use strcpy, as in strcpy(strings[string_index], buffer). But that won't work unless you allocate memory for the string first. strings[string_index] is just a pointer, and since you don't initialize it, it could be pointing anywhere. Either use malloc() to allocate memory for it first, or declare strings using "char strings[LINE_CAP][MAX_LENGTH];" instead.
 
Ok, I got it working! Thanks so much!
 

Similar threads

  • · Replies 17 ·
Replies
17
Views
2K
Replies
10
Views
2K
Replies
4
Views
3K
  • · Replies 1 ·
Replies
1
Views
25K
  • · Replies 1 ·
Replies
1
Views
3K
  • · Replies 4 ·
Replies
4
Views
6K
  • · Replies 2 ·
Replies
2
Views
3K
  • · Replies 36 ·
2
Replies
36
Views
4K
Replies
6
Views
3K
  • · Replies 7 ·
Replies
7
Views
2K