Tagged Questions

fgets() is the ISO C function declared in <stdio.h> to read a line from a stream.

learn more… | top users | synonyms

15
votes
2answers
356 views

How to read non-ASCII characters from CLI standard input

If I type å in CMD, fgets stop waiting for more input and the loop runs until I press ctrl-c. If I type a "normal" characters like a-z0-9!?() it works as expected. I run the code in CMD under Windows ...
11
votes
5answers
13k views

convert a char* to std::string

I need to use std::string to store data retrieved by fgets(). To do this I need to convert fgets() char* output into an std::string to store in an array. How can this be done?
7
votes
5answers
258 views

In Perl, can I limit the length of a line as I read it in from a file (like fgets)?

I'm trying to write a piece of code that reads a file line by line and stores each line, up to a certain amount of input data. I want to guard against the end-user being evil and putting something ...
7
votes
8answers
3k views

Read a line of input faster than fgets?

I'm writing a program where performance is quite important, but not critical. Currently I am reading in text from a FILE* line by line and I use fgets to obtain each line. After using some performance ...
6
votes
5answers
599 views

base64 encoded string gets truncated through fgets call while parsing IMAP

I am parsing emails with Zend_Mail, and strangely some content gets truncated without an obvious reason and malforms the email parts. For example Content-Disposition: attachment; filename="file.sdv" ...
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
1answer
2k views

fgets() and fread() - What is the difference?

I understand the differences between fgets() and fgetss() but I don't get the difference between fgets() and fread(), can someone please clarify this subject? Which one is faster? Thanks!
5
votes
4answers
444 views

how to read a string from a \n delimited file

I'm trying to read a return delimited file. full of phrases. I'm trying to put each phrase into a string. The problem is that when I try to read the file with fscanf(file,"%50s\n",string); the ...
5
votes
2answers
596 views

PHP fastest method of reading server response

im having some real problems with the lag produced by using fgets to grab the server's response to some batch database calls im making. Im sending through a batch of say, 10,000 calls and ive ...
5
votes
6answers
435 views

Can C's fgets be coaxed to work with a string *not* from a file?

Specifically, the code sample here works great, but only when the string is stored in a file. Sometimes I need it to process a generated string (stored in a string variable), but I'm having trouble ...
4
votes
4answers
118 views

PHP strtotime() function

I have a file with the following lines. I want to identify lines which have timestamps less than a week from now(starting from aug 22 for this example). log3.txt 28-08-2011 10:29:25 A string ...
4
votes
5answers
858 views

C fgets versus fgetc for reading line

I need to read a line of text (terminated by a newline) without making assumptions about the length. So I now face to possibilities: Use fgets and check each time if the last character is a newline ...
4
votes
1answer
442 views

C - fgets segfault

I have the following code: int get_int(void) { char input[10]; fgets(input, 10, stdin); // Segfault here return atoi(input); } It gives me a segfault where marked. I have absolutely no ...
4
votes
4answers
159 views

PHP script gets progressively slower (file reader)

I have a script that, when put against a timer, gets progressively slower. It's fairly simple as all it does is reads a line, checks it then adds it to the database, then proceeds to the next line. ...
4
votes
4answers
1k views

fgets() function in C

I know everybody has told me to use fgets and not gets because of buffer overflow. However, I am a bit confused about the third parameter in fgets(). As I get it, fgets is dependent on: char * fgets ...
3
votes
7answers
427 views

Usage of fgets function in C

One of my assignments in to write my own UNIX Shell. To receive input from the user, I am using fgets to capture the input as a string but I'm not really sure how it works. When I run: char ...
3
votes
5answers
437 views

fgets naturally puts a terminating zero in C?

struct DVDInfo *ReadStruct( void ) { struct DVDInfo *infoPtr; int num; char line[ kMaxLineLength ]; char *result; infoPtr = malloc( sizeof( ...
3
votes
3answers
219 views

C fgets question

struct DVDInfo *ReadStruct( void ) { struct DVDInfo *infoPtr; int num; char line[ kMaxLineLength ]; char *result; infoPtr = malloc( sizeof( ...
3
votes
2answers
528 views

fgets instructions gets skipped.Why?

Whenever I do a scanf before a fgets the fgets instruction gets skipped. I have come accross this issue in C++ and I remember I had to had some instrcution that would clear the stdin buffer or ...
3
votes
4answers
270 views

leak in fgets when assigning to buffer

I'm having problems understanding why following code leaks in one case, and not in the other case. The difference is while(NULL!=fgets(buffer,length,file))//doesnt leak ...
3
votes
3answers
2k views

Removing trailing newline character from fgets() input

i am trying to get some data from the user and send it to another function in gcc. the code is something like this. printf("Enter your Name: "); if(!(fgets(Name, sizeof Name, stdin) != NULL)) { ...
3
votes
5answers
1k views

fgets and strcmp [C]

I'm trying to compare two strings. One stored in a file, the other retrieved from the user (stdin). Here is a sample program: int main() { char targetName[50]; fgets(targetName,50,stdin); ...
3
votes
5answers
4k views

Difference between scanf() and fgets()

I want to know what is the difference between fgets() and scanf(). I am using C as my platform.
3
votes
9answers
7k views

PHP - Returning the last line in a file?

I'm guessing it's fgets, but I can't find the specific syntax. I'm trying to read out (in a string I'm thinking is easier) the last line added to a log file.
3
votes
1answer
829 views

Looping Fget with fsockopen in PHP 5.x

I have a Python Server finally working and responding to multiple command's with the output's, however I'm now having problem's with PHP receiving the full output. I have tried commands such as fgets, ...
3
votes
5answers
4k views

how to prevent fgets blocks when file stream has no new data

I have a popen() function which executes "tail -f sometextfile". Aslong as there is data in the filestream obviously i can get the data through fgets(). Now, if no new data comes from tail, fgets() ...
2
votes
3answers
43 views

single-character user input and fgets

Noob question here, but I am teaching myself C and trying to figure out user input in the safe, correct way (for reference this is the morse code array exercise in the GNU C Programming Tutorial at ...
2
votes
4answers
115 views

fgets in this program

I'm trying to make a C program in UNIX in which the parent process generates two child processes. The parent will read data from stdin and will send it to his children. The 1st child will show on ...
2
votes
5answers
114 views

How to fgets() a specific line from a file in C?

So, I'm trying to find a way to fgets() a specific line in a text file in C, to copy the contents of the line into a more permanent buffer: Essentially, I was wondering if there was a way to do that ...
2
votes
4answers
126 views

equivalent of fgets on a buffer?

I was originally parsing a file line by line using fgets. Now I changed things so that I already have my entire file in a buffer. I still like to read that buffer line by line for parsing purposes. Is ...
2
votes
4answers
107 views

How to open a file of any length in C?

As a school assignment I'm tasked with writing a program that opens any text file and performs a number of operations on the text. The text must be loaded using a linked list, meaning an array of ...
2
votes
1answer
277 views

Why is fgets() considered in gcc(linux) and what is the alternative to use it? [closed]

Possible Duplicate: Why is the `gets' function is dangerous? Why should not be used? I am propting user to input a string using fgets() which will be analysed using scanf() for ...
2
votes
4answers
78 views

reading a block of lines in a file using php

Considering i have a 100GB txt file containing millions of lines of text. How could i read this text file by block of lines using PHP? i can't use file_get_contents(); because the file is too ...
2
votes
2answers
351 views

fsockopen connection does not close until timeout

Background: I have to create a plain site that accepts incoming posted XML and sends the XML to a server via a socket connection and in turn display the XML sent back from the server. Easy peasy. ...
2
votes
3answers
178 views

scanf to fgets C

Say I need to read in two name like, [name name]\n .... (possibly more [name name]\n . Assuming the name can have length of 19, my code so far is, How would I actually prevent an input like [name name ...
2
votes
3answers
291 views

fgets doesn't work after scanf

#include <stdio.h> #include <string.h> #include <ctype.h> void delspace(char *str); int main() { int i, loops; char s1[101], s2[101]; scanf("%d", &loops); ...
2
votes
3answers
264 views

Reading user input and checking the string

How does one check the read in string for a substring in C? If I have the following char name[21]; fgets(name, 21, stdin); How do I check the string for a series of substrings? How does one check ...
2
votes
5answers
2k views

Open file and read from file Objective-c

I'm trying to open a file, and read from it.. but I'm having some issues. FILE *libFile = fopen("/Users/pineapple/Desktop/finalproj/test242.txt","r"); char wah[200]; fgets(wah, 200, libFile); ...
2
votes
4answers
251 views

How to prevent the user from entering more data than the maximum limit?

This code asks the user for data and subsequently a number: $ cat read.c #include<stdio.h> #include<stdlib.h> #define MAX 10 int main() { char* c = (char*) malloc(MAX * ...
2
votes
4answers
305 views

Tips on how to read last 'word' in a character array in C

Just looking to be pointed in the right direction: Have standard input to a C program, I've taken each line in at a time and storing in a char[]. Now that I have the char[], how do I take the last ...
2
votes
1answer
223 views

Easiest way to read this line of text into a struct?

I have a text file with data in the form: Lee AUS 2 103 2 62 TRUE Check AUS 4 48 0 23 FALSE Mills AUS 8 236 0 69 FALSE I need to each line into a struct like, however I'd like to avoid using fixed ...
2
votes
4answers
3k views

How do I read white space using scanf in c?

Problem: I need to be able identify when two whitespaces occur consecutively. I have read the following questions: ...
2
votes
5answers
324 views

Sensible line buffer size in C?

I'm using popen to read output from shell commands. I will use fgets to read line by line. My question is how to choose the best buffer size for my char* buffer? I remember from a professor telling us ...
2
votes
4answers
1k views

How to use fgets if you don't know the number of characters to be read?

I need to read a file and send the text from it to a string so I can parse it. However, the program won't know exactly how long the file is, so what would I do if I wanted to use fgets, or is there a ...
2
votes
2answers
579 views

check whether fgets would block

I was just wondering whether in C is it possible to peek in the input buffer or perform similar trickery to know whether a call to fgets would block at a later time. Java allows to do something like ...
2
votes
4answers
237 views

My http server in c++ is not sending all files back correctly

I'm working on an HTTP server in c++, and right now it works for requests of text files, but when trying to get a jpeg or something, only part of the file gets sent. The problem seems to be that when ...
2
votes
4answers
159 views

How to retrieve data and not entire lines in C?

Right now I use: char record[BUFLEN]; if(fgets(record, BUFLEN, fp) != NULL) { /* some code */ } to get lines from input like: city=Boston;name=Bob;age=35 city=New ...
2
votes
6answers
1k views

Mimic Python's strip() function in C

I started on a little toy project in C lately and have been scratching my head over the best way to mimic the strip() functionality that is part of the python string objects. Reading around for ...
1
vote
1answer
80 views

Why do I get an assertion failure?

This code fails when I try to debug it using VC2010: char frd[32]="word-list.txt"; FILE *rd=fopen(frd,"r"); if(rd==NULL) { std::cout<<"Coudn't open file\t"<<frd; exit(1); } char ...
1
vote
1answer
61 views

Dealing with input in C

A brief question really, looking for, wondering about, and asking for any tips for what the best way is to handle this type of input: word word word word word word word word word word word ...

1 2 3 4