Tagged Questions
The gets tag has no wiki summary.
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 ...
5
votes
2answers
115 views
In Ruby, how do I combine sleep with gets? I want to wait for user response for 1 min, otherwise continue
I'm running a loop, in which I wait for a user response using the "gets.chomp" command.
How can I combine that with a sleep/timer command?
For example. I want it to wait 1 min for the user to enter a ...
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 ...
3
votes
4answers
3k views
Recovering from a broken TCP socket in Ruby when in gets()
I'm reading lines of input on a TCP socket, similar to this:
class Bla
def getcmd
@sock.gets unless @sock.closed?
end
def start
srv = TCPServer.new(5000)
@sock = srv.accept
...
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
1answer
31 views
Changing behavior of gets, when reading from command line, in Ruby
The intended operation of the Ruby code below is as follows:
write ARGV[0], a file named on the command line, to old
create a new, temporary copy of that file
loop until user gives input
remove the ...
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
2answers
96 views
Why is gets throwing an error when arguments are passed to my ruby script?
I'm using gets to pause my script's output until the user hits the enter key. If I don't pass any arguments to my script then it works fine. However, if I pass any arguments to my script then gets ...
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
1answer
13 views
Extra Characters from console I/O using gets
I'm trying to build a ruby program which creates a directory and name it using console input.
1 #!/usr/bin/env ruby¬
2 ¬
3 ...
1
vote
2answers
53 views
TCL gets command with kind of -nohang option?
Here is a code which just implements an interactive TCL session with command prompt MyShell >.
puts -nonewline stdout "MyShell > "
flush stdout
catch { eval [gets stdin] } got
if { $got ne "" } ...
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
29 views
Trying to search a string for a gets input in ruby
I am having issues searching for a string input by the user using gets. Here's the outline:
puts "What are we searching for?"
search = gets
z=1
result = []
file = File.open('somefile.txt', 'r+')
...
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
4answers
66 views
scanf and gets buffer
im having a problem with scanf and gets. and I kno that its bound to errors but I couldn't find any other way. This way, the name is printing out but It doesn't print out the first letter of it.
...
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
4answers
174 views
C instruction is being reordered when cin cout and gets is used consecutively
Does anyone knows why C instruction is being reordered when cin cout and gets is used consecutively here?
I am using Dev-C++ 4.9.9.2.
#include<iostream>
using namespace std;
int main(){
...
1
vote
2answers
198 views
print function in ruby
I'm a ruby beginner. I have the following code which asks the user for his name and prints it back.
print 'Enter your name : '
name = gets()
print("Hey,#{name} !")
If I enter John Doe as the name, ...
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; ...
1
vote
4answers
185 views
gets (variable)
can anyone tell me why gets(abc) works with char[] but not with int?
int abc;
char name[] = "lolrofl";
printf("Hello %s.\n",name);
printf("\n >> ");
fflush(stdin);
gets (abc);
printf("\n ...
1
vote
6answers
446 views
How do you use sets and gets in C++?
I've used them in java and didn't seem to have too many issues, but I'm not grasping them very well in C++. The assignment is:
Write a class named Car that has the following member variables:
...
0
votes
2answers
27 views
How to check if stdin is readable in TCL?
With the following command you can register some callback for stdin:
fileevent stdin readable thatCallback
This means that during the execution of the update command it will evaluate thatCallback ...
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
39 views
How can I store user defined data in a hash
Help, I am a noob, just need some advice on this bit of code. I have got most of my program working this part has me stuped i want to get a name and password. Then make the name the key and the ...
0
votes
1answer
115 views
Ruby gets stream closed stream IO error
This is an error that I'm getting when I run a script.
repo nikhil$ ruby repobuilder.rb
Resuming from package:20
Now Processing 21
repobuilder.rb:16:in `gets': closed stream (IOError)
from ...
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
2answers
199 views
Ruby gets input goes to the console command line after program terminates
I am trying to set up a simple ruby program with a two additional threads.
One thread is to check the serial port for data and populate a variable if anything is found.
The second thread is is a ...
0
votes
2answers
427 views
Using gets command to sort array alphabetically in Ruby
I am a Ruby noob and am simply trying to use the gets command to sort a array of words ("dog", "cat", "ape") should be entered individually by gets and become ("ape", "cat", "dog")
I have tried:
...
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
1answer
333 views
Question about “gets” in ruby
I was wondering why when I'm trying to gets to different inputs that it ignores the second input that I had.
#!/usr/bin/env ruby
#-----Class Definitions----
class Animal
attr_accessor :type, ...
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 ...