The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
23 views

Ruby gets method throws an exception when arguments are passed from the console

I have experienced some ODD behavior from the code below: require 'CSV' $DEBUG = ARGV.empty? ? false : ARGV[0] #Global debug flag. class PhoneBook #class code here etc etc end ...
3
votes
1answer
68 views

The Ruby gets method truncates my input at 256 characters

I am trying to enter a long string (> 256 characters but generally < 512) in Ruby with: puts "Enter long string" ilogo = gets.chomp puts "#{ilogo}" For some silly reason, it always truncates the ...
0
votes
4answers
63 views

Ruby “gets” prompts user for input. How do I get input (string) to reference existing object?

I'm prompting the user with gets to give me either peg1, peg2, or peg3, which each reference an array already made before the prompt. However, the input from the user is a string, which would be ...
1
vote
1answer
96 views

How to use “gets” function in C++ after previous input?

I tried to input data with gets function but whenever program execution arrives at the step ..it ignores it .. when i use it without previous data input,it runs properly .but when use it after data ...
2
votes
2answers
69 views

Usage of two gets() in C++

I am learning about classes in C++. I made a simple program using the concept of classes. In the program I need the person to enter the details of the book. Here is that function: void Book::add(){ ...
0
votes
2answers
63 views

Take user input with JavaScript in the console

I need to get user input when running a .js in a console with spidermonkey like this: $ js myprogram.js What's the JavaScript equivalent of Ruby's gets?
0
votes
2answers
60 views

Please help me with this Ruby math calculator program

I wrote a program. print "Radius = " radius = gets.chomp print "Height = " height = gets.chomp ans = (2 * 3.14 * (radius * radius)) + (2 * 3.14 * radius * height) It won't work. This is the ...
0
votes
1answer
25 views

ruby (rubyinstaller) and cygwin odd behaviour with gets method inside a loop

I've been running quite a few ruby console scripts in cygwin terminal under windows xp with no problems so far using ruby 1.9.3-p28 from rubyinstaller. All of a sudden now I'm noticing this odd ...
0
votes
1answer
73 views

SOLVED: RubyFiddle issue - NameError: undefined local variable or method 'gets' for #

I apologise if this has been asked before. I have looked through Stack Overflow and I have tried some potential solutions but to no avail. class SqrrtProg def hello puts "Hello! Welcome to ...
-1
votes
2answers
57 views

Unable to get string using gets() in C

I wanted to write a program to check which string has a greater length without using string functions. I tried to get the two strings as input using gets() but my program keeps on crashing. Please ...
0
votes
2answers
41 views

Does gets produce a string with an extra space, character return or nil?

I wrote a code for translating a plain text message into a cipher text message using a simple substitution cipher (a=b, b=c, etc). Spaces were substituted with a "1". I then wanted to make it so that ...
0
votes
3answers
195 views

Strings, gets and do while

I'm doing an exercise in C but I have a problem when at the and I want to repeat the cicle (do while), infact if I type 1 the programme starts again by the top, but it doesn't stop at the gets(testo); ...
6
votes
4answers
171 views

Was gets ever useful? [closed]

It seems to me, people, especially when learning the C programming language, are still using the gets function to read in data from stdin. Despite that it has now been removed1 from the C11 standard, ...
1
vote
0answers
28 views

Trying to run a simple gets.chomp in Sublime

For some reason when I run: name = gets.chomp puts name I get the error: gets:1:in <main>': undefined methodchomp' for nil:NilClass (NoMethodError) If I remove the .chomp and run: name = ...
0
votes
1answer
43 views

How to receive data from user without ruby adding an extra newline

I am trying to create a program that alphabetizes a users' word entries. However, inspection of the users entries reveals that ruby is for some reason adding a newline character to each word. For ...
3
votes
1answer
83 views

Why does gets return zero in Ruby

I have a simple method def save_logline print "What's the name of the movie" movie_name = gets.strip print "And what is your precious logline?" logline = gets.strip File::open(movie_name + ...
2
votes
2answers
134 views

gets() only taking input once in while loop

I am new to C and working through some exercises, but having trouble with gets() in a while loop. In searching, I believe that it may have something to do with the \n character, but I was hoping that ...
0
votes
1answer
62 views

Internal working of stdin and input buffer

I m trying to print the number of characters entered by user within 5 seconds. But I m facing some problem in fetching the input buffer. Code snippet # include <signal.h> # include ...
0
votes
1answer
41 views

Getting input from the user- does not work

#include <stdio.h> #include <string.h> #include <stdlib.h> #include <ctype.h> #include "mainl.h" static struct prod_details pd; char *getinput(char *inp) { printf("Enter ...
-3
votes
2answers
81 views

changing a variable using gets.chomp()

im trying to write to a file using this code: puts "-------------------- TEXT-EDITOR --------------------" def tor(old_text) old_text = gets.chomp # end $epic="" def torr(input) tore= ...
0
votes
1answer
87 views

Reading Input - gets scanf - Newbie

I am currently coding a program for an assignment involving customer orders... So far everything has been coded correct but now i have a problem when it comes to reading user input.. 2 lines are ...
2
votes
1answer
115 views

My layout gets messed up when zoomed out

I started learn webdesign one week ago. I'm trying to create a webpage with three divs next to each other. My layout gets messed up when zoomed out. 50% zoom level is okay but when I started to zoom ...
1
vote
5answers
253 views

Dynamic Memory allocation for char pointer

I have a strange issue related to dynamic memory allocation to char pointer. I have something like char *input = new char; //1 gets(input) //2 char *dest = new char; //3 during the step3, i get heap ...
1
vote
4answers
189 views

fgets set to char * causes segmentation fault, Dynamic string

I'm writing a program in c that looks through a standardly inputted text file with lines "string int". I had the program running fine with scanf originally, but now the name has to be a dynamic ...
0
votes
2answers
128 views

GETS - C is not working for me

I am having trouble with inserting string in to char variable. Problem appeares when I put it into function. When I debug my program, it displays printf but it skipes gets here is my code: int ...
2
votes
3answers
132 views

Ruby 'gets' that works over multiple lines

I want to enter a multiple line string with ruby, in order to strip certain characters from it. "gets" only allows a single line - is there a similar function for multiple lines. Thanks Joseph ...
0
votes
3answers
185 views

C Programming : gets() and Char String Array Issue - strcpy() copying into other strings in the Array

I am using the function gets() to retrieve string input from the user. I then store that string into a char array, char transdestmp[DESMAX], where DESMAX is 31. If the variable_name is greater than 30 ...
2
votes
1answer
54 views

How to set a predefined input

I want a simple pre-defined input in ruby. What I mean is that I want something to be there by default so the user can edit or just simply press Enter to skip. I'm using STDIN.gets.chomp. not ...
0
votes
4answers
218 views

C Programming data input error

I'm writing this to get student information (full name, id and gpa for the last 3 trimester, so I used structures and a for loop to plug in the information however, after 1st excution of the for loop ...
0
votes
3answers
792 views

Dev-C++ Input skipped

#include<stdio.h> #include<conio.h> main() { int i; char c, text[30]; float f; printf("\nEnter Integer : "); scanf("%d",&i); printf("\nEnter ...
0
votes
2answers
162 views

Ruby gets() not returning correct string

I decided to give Ruby a go today after hearing all of the great things about it, but so far it has only been giving me a hard time. A long time ago I made a "search engine" while learning Python that ...
1
vote
5answers
311 views

C Struct Array Input

I have the following struct typedef char String[256]; typedef struct { String name; int year; float price; } Book; Array of Books int main(int argc, const char * argv[]) { ...
0
votes
1answer
458 views

Ruby net/sftp read file remotely and save to database, get error StatusException (4, “failure”)

I'm trying to download xmls from a remote sftp site, read the contents of the file into REXML and save the data to the DB. so far the code is up to reading the file and f.gets line fails with the ...
0
votes
2answers
48 views

Visible spaces with multiple gets on one line

I'm using Ruby, trying to make an interactive program. (Very new to this, I'm actually learning right now.) Right now I have puts 'Can I have your name please? first = gets.chomp puts 'Ok, so your ...
0
votes
3answers
124 views

incorrect results with gets () due to the stray \n in istream BUT not with scanf() or cin?

In the program printed below the problem with gets () is that it takes the data for the first time only, and every subsequent call results in a null, due to the stray \n in the istream left while ...
1
vote
1answer
82 views

Running a ruby script from another, weird error using “gets”

I have written a ruby script that then calls another ruby script. The callee script is very long and has a lot of "gets" for input. So what I do is open my unix terminal, call the caller script, ...
1
vote
1answer
75 views

getting a string from the user after getting int in C language

I can't understand why this code is not working properly: #include<stdio.h> int main() { char string [100]; int a; printf(">"); scanf("%d", &a); printf(">"); ...
2
votes
3answers
195 views

Ruby File gets not reading content after last blank line \n

I'm trying to write a very simple ruby script that opens a text file, removes the \n from the end of lines UNLESS the line starts with a non-alphabetic character OR the line itself is blank (\n). ...
1
vote
1answer
187 views

How to make gets() wait only particular time for input from STDIN in C?

Just as title states. I have gets(buffer) in while(1) infinite loop, which stops on gets(buffer) and wait ad infinitum. I would like gets(buffer) to wait only lets say 3 seconds for input from STDIN, ...
1
vote
4answers
624 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
165 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. ...
1
vote
1answer
46 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 ...
0
votes
2answers
247 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 ...
1
vote
2answers
575 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 "" } ...
0
votes
3answers
404 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); ...
1
vote
5answers
944 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++ ...
4
votes
3answers
201 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 ...
0
votes
1answer
74 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 ...
-1
votes
1answer
46 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 ...
0
votes
1answer
1k 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 ...

1 2