Tagged Questions

8
votes
5answers
1k views

Safe Alternative to gets

I wanna read a whole line from standard input, including the whitespace between two words. When using gets on gcc I get the following message: send.c:(.text+0x2a): warning: the `gets' function is ...
6
votes
4answers
3k views

Why is the `gets' function is dangerous? Why should not be used?

When I try to compile C code that uses the gets function, I get a warning: warning: the gets function is dangerous and should not be used. I remember this has to do something with stack protection ...
4
votes
3answers
122 views

gets() does not read user input

I am new to linked list, now I have little problems in population of nodes. Here I could populate first node of linked list but the gets() function doesn't seems to pause the execution to fill the ...
4
votes
5answers
2k views

Input in C. Scanf before gets. Problem

I'm pretty new to C, and I have a problem with inputing data to the program. My code: #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { int a; ...
3
votes
5answers
86 views

c : gets() and fputs() are dangerous functions?

In the computer lab at school we wrote a program using fputs and the compiler returned an error gets is a dangerous function to use and a similar error for fputs but at home when i type in this bit of ...
2
votes
1answer
63 views

read an unknown number of lines

I need to implement in C the program ,which reads an unknown number of lines from stdin. I know that the maximum number of lines is 100. I tried to use gets ,but I don`t know when to stop the loop. ...
2
votes
4answers
185 views

Is gets() offcially deprecated?

Based on the most recent draft of C++11, C++ refers to ISO/IEC 9899:1999/Cor.3:2007(E) for the definitions of the C library functions (per ยง1.2[intro.refs]/1). Based on the most recent draft of C99 ...
2
votes
6answers
236 views

Reading strings in C

If I was using C gets(), and I was reading a string from the user, but I have no idea how big of a buffer I need, and the input could be very large. Is there a way I can determine how large the string ...
2
votes
5answers
392 views

if one complains about gets(), why not do the same with scanf(“%s”,…)?

From man gets: Never use gets(). Because it is impossible to tell without knowing the data in advance how many characters gets() will read, and because gets() will continue to store ...
2
votes
7answers
4k views

Disable warning messages in GCC through header files?

I am using the function gets() in my C code. My code is working fine but I am getting a warning message (.text+0xe6): warning: the `gets' function is dangerous and should not be used. I want this ...
1
vote
5answers
107 views

Is gets() considered a C function or a C++ function?

#include <iostream> using namespace std; void main(){ char name[20]; gets(name); cout<<name<<endl; } I can't found answer in google, function gets() is C or C++ ...
1
vote
1answer
42 views

Gets(string#) function skipping first gets request

I'm working on a project for my own personal leisure and learning. Part of it looks like this: #include<stdio.h> #include<string.h> wgame() { char string3[12], string2[12], ...
1
vote
3answers
91 views

Strings taken from user in C are being scrambled

I have written the following C code to get in a list of strings from the user. But the stored strings are giving out weird values. #include <stdio.h> #include <stdlib.h> #define ...
1
vote
2answers
87 views

gets() taking input without actually giving it any input?

I'm fairly new to C so sorry if this is a stupid question but when I run the following code: #include <stdio.h> int main () { int i; int test[10]; char string[81]; for(i = 0; ...
0
votes
3answers
68 views

scanning string in c

int main( ) { char str[200]; int n,tc; scanf("%d",&tc); while(tc--) { scanf("%d",&n); gets(str); puts(str); ...
0
votes
1answer
125 views

problem with gets()

I am trying to take input data and print it using structures. when i run this code it is not taking input for lastname. It directly asks to enter input for firstname. Can someone help me with this. ...
0
votes
2answers
163 views

How can I scan strings with multiple words multiple times in C [not C++]?

I have googled many times but I cannot find a concrete answer to my question/problem. I know fgets() allows it, as well as gets(). But if i do it multiple times, there's always an error. Multiple ...
0
votes
5answers
168 views

gets() problem in C

I wrote the following code: #include <stdio.h> #include <stdlib.h> #include <string.h> #define SIZE 128 int main () { char mychar , string [SIZE]; int i; int const ...
0
votes
2answers
221 views

gets() function and '\0' zero byte in input

Will the gets() function from C language (e.g. from glibc) stop, if it reads a zero byte ('\0') from the file ? Quick test: echo -ne 'AB\0CDE' Thanks. PS this question arises from comments in this ...
0
votes
1answer
88 views

Problem when reading input in C

I've made a Linked List. Its elements keep both previous and next items' address. It gets commands from an input file. It detects the command and uses the following statement as a parameter. (text: ...
0
votes
3answers
149 views

CR character in gets() function

The user types a string, possibly separated by tabs, spaces and "enters" (CRs). I need to receive all of it; the problem is that gets() function stops the scan when the user presses the "Enter" key. ...
0
votes
3answers
472 views

gets() does not work

I have a program written in C and it calls gets() from a switch when a user chooses the option of 3. Here is my code. It does not seem to wait to wait for the user to input something. Rather the ...
-1
votes
1answer
33 views

Some weird output while reading from a console of my X-win window

My following code is acting really weird, I am trying to read from a console through one of threads in my application, and main thread has some printf statements, which I am using for debugging and ...