fgets() is the ISO C function declared in to read a line from a stream.
0
votes
3answers
70 views
Pass a string to a function in C
I have the following code:
#include <stdio.h>
char * lookLine (FILE *fichero)
{
char p[25];
fgets (p, sizeof (p), fichero);
return p;
}
int main (void) {
printf ("%s\n", ...
0
votes
4answers
43 views
Read from file C++ [closed]
I want to read only the IP's and printf them without blank spaces.Here is part of my code :
char buffer[256]
dns_serv = fopen("dns_servers.conf", "rt"));
log = fopen("logfile", "at")) ;
...
0
votes
1answer
20 views
C++ fopen error on windows server 2008
I try to open file "job.ini" using function fopen is this way:
iniFile = fopen("job.ini", "r");
debugging, the file is opened and then i try to read data from file using:
fgets(buffer, ...
1
vote
2answers
45 views
Read from a file and tokenise input C
I'm having trouble with a piece of coding I'm working on. It involves linked lists and certain annoying pointers. Here is some sample code:
PersonType *person;
FILE *c;
c = fopen("file.csv", "r");
...
0
votes
3answers
58 views
How to use fgets() instead of fscanf() on stdin in C?
I want to use fgets instead of fscanf to get stdin and send it to a child process via a pipe. The code below works for sorting the lines in the file but replacing
fscanf(stdin, "%s", word)
with
...
0
votes
1answer
66 views
How to use select to read from stdin?
I try to read from stdin using select, after that I'll send it through a socket to a server. but This snippet doesn't read anything from stdin, and prints Enter command: after the first time I input a ...
1
vote
3answers
39 views
fgets and sscanf getting list value twice
I'm having trouble with sscanf and fgets where it seems to be getting the last value input and re reading it back through even though we have come to the end of the file. My code:
while (won == 0) {
...
0
votes
2answers
47 views
stack smashing error
This is my code:
#include <mysql.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
char *server = "nope";
char *user = "nope";
char *password = "nope";
...
0
votes
2answers
36 views
input from fgets not stored using sscanf properly
So I have this small part of my code (basically the input for my whole program).
It has to take the form of a string with at most 20 characters, and two integers all separated by a space.
eg master ...
0
votes
2answers
28 views
Read from file two lines at a time
I'm trying to create a simple server that can connect to many clients and return to them a quote (two lines) from a file that is passed into the server. I've had no trouble with connecting the client ...
0
votes
4answers
51 views
Get the whole input of a string in C
#include
char option[64],line[256];
main()
{
printf(">>")
(fgets(line, sizeof(line), stdin)) {
if (1 == sscanf(line, "%s", option)) {
}
}
print(option)
}
will ...
-1
votes
3answers
67 views
Reading in from file to structures
I am attempting to read saved data from a file. I am trying to convert the information in the buffer from a string to characters and assign their values to the members of the structure.
It seems the ...
1
vote
1answer
50 views
fgets and sscanf with a struct causing unexpected results
I have a program I am writing in which I need to fgets a line from a flat file. I then sscanf the line to put the data into a struct. This gives me very unexpected results. First this is a working ...
0
votes
5answers
35 views
The result of “echo fgets()” in a txt file is not the same
I am trying to include in my website a txt file with php using the following code
<?php
$myFile = '[http://users.otenet.gr/~vag1976/optonio/NOAAMO.TXT]';
$fp = fopen("$myFile", ...
0
votes
2answers
70 views
Read a file which has particular structure in C
I have a file which has the format as following:
*Elset, elset = _121:0_125:0
1,
4,
6,
8,
*Elset, elset = _122:0
5,
7,
2,
In this file, "121:0", "125:0" and "122:0" are the names of each layer and ...
2
votes
0answers
52 views
fgets stripping tags [closed]
I'm using fgets to read a text file that contains field names delimited with the "<" and ">" characters. It seems like fgets is seeing these field names as tags and stripping them. I thought that ...
1
vote
1answer
102 views
fgets returning error for FILE returned by popen
I'm trying to execute a command line from my C code, but when I get to the fgets() function, I got a NULL error.
void executeCommand(char* cmd, char* output) {
FILE *fcommand;
char ...
2
votes
1answer
45 views
Receiving response from server using I/O in C with sockets
I'm trying to make a simple web client using sockets. I send a GET request to a web page and want to receive an HTML file. I know I can receive using recv(), but I want to do this using a FILE. I'm ...
1
vote
3answers
95 views
Dealing with strings in C
I'm trying to write a stream editor in C and I'm having a hard time dealing with strings. After reading in the lines of a File, I want to store them locally in an array of Strings. However, when I try ...
2
votes
1answer
55 views
Why does read not work yet fgets work fine in my program?
So the specific part of my program looks like this:
printf("Please input command:\n>");
While 1 {
if ((int c = read(STDIN_FILENO, input, Buffer_size) == 0) {
break;
}
rest of ...
-1
votes
1answer
72 views
C Programming: Read file and search in a second file based on the data found
I have two files, file1.txt and file2.txt:
file1.txt:
1234:James Smith:100:110
1111:Steve Jones:150:130
4321:Bob Wilson:110:140
file2.txt
100;Area 1;0.00
110;Area 2;3.00
120;Area 3;4.75
130;Area ...
0
votes
2answers
69 views
C fgets. I use it in a dowhile but the first time it is used it's like it doesn't exist
I got a question about fgets in C programming.
I am using fgets() function in my code(example of input: A4 N) inside a do-while.
(so that the input will be correct) But for some reason the first ...
1
vote
1answer
37 views
Variance in data in/out of loop
I'm trying to write a program that reads in a .pdb file, which is a file type used in biology applications. This type of file has a standard format with varying white space between data. The file is ...
1
vote
2answers
85 views
fgets not reading EOL?
So bascially I am writing a text-based rpg in C and I wanted to create a map system. Basically the function im having trouble with is reading in "text map" from a file that looks like this:
...
0
votes
2answers
62 views
Program doesn't wait for the second read
This is a part of a bigger program, but what is driving me crazy is the fact that the program doesn't wait for something to be read from stdin in the string s (it just puts null in string s) , but if ...
0
votes
1answer
76 views
Unexpected fgets behavior on EOF
I have this code that gets a line from stdin:
char string[USR_SIZE+1];
/*USR_SIZE is 9 */
fgets(string, USR_SIZE, stdin);
size_t len = strlen(string);
if (string[len-1] == '\n') {
// read in ...
0
votes
2answers
63 views
Strange issue while trying to read from a file with fgets()
I am trying to read from a file in C using fgets() however I have run into the following problem:
Although I can open the file successfully using fopen():
if ( file=fopen(filename, "r") == NULL )
{
...
0
votes
2answers
59 views
Input line size on stdin retrieval
I'm using fgets() function to store a string in a struct with a fixed size.
if(fgets(auth_data->user_id, USR_SIZE, stdin) == NULL)
EXIT_ON_ERROR_("Error on fgets function\n");
fflush(stdin);
...
0
votes
2answers
77 views
False eof from feof() with sockets fgets
I have inherited a piece of code which uses the fetchURL() function below to grab data from a url. I've just noticed that it is often getting feof() returning true before the full page of data is ...
0
votes
2answers
59 views
How to separate words by numbers from a string
I have a text file called commands.txt which contains some commands followed by some arguments. Example:
STOP 1 2 4
START 5 2 1 8
MOVE
CUT 0 9
I want to read every line from this text file and to ...
1
vote
3answers
97 views
fgets() getting stuck in infinite loop
If I am using the fgets() function to search for a specific delimiter throughout a text file, how do I make sure the fgets() does not infinitely loop at the EOF?
I am concatenating all the lines from ...
0
votes
2answers
237 views
Why doesn't fgets read whole line in while loop but works in for loop?
If my fgets is in a while loop, it only returns half the string. If it's in a for loop, it returns the whole string.. Any idea why?
Code below:
FILE *fp; // File pointer
char filename[] = ...
1
vote
2answers
107 views
Calling fgets() twice causes second call to not complete
I have been Googling this problem for hours and so far I haven't seen any mention of it.
int getInt()
{
char* rawin = (char*)malloc(100);
printf("How big should the secret code be?\n(Input ...
0
votes
0answers
37 views
fgets and strtok crashes with Segmentation error after several runs
I have a csv file that I read to get the IP address that I need to do a lookup. I decided to use fgets and strtok to get the IP address in each line of the csv file. The IP address is the 4th token in ...
0
votes
0answers
115 views
unexpected result from fgets() no (f)scanf
I have looked at other similar problems with fgets on here and they all seem to be caused by an (f)scanf. The problem I am running into does not involve (f)scanf.
Here is the while loop I am using ...
-1
votes
2answers
247 views
Reaching EOF with fgets
I'm writing a function that perform some authentications actions. I have a file with all the user_id:password:flag couples structured like this:
Users.txt
user_123:a1b2:0 user_124:a2b1:1 ...
0
votes
1answer
73 views
PHP fgets() won't work unless it's implemented with a variable?
I'm writing some code that can read in from a .txt file a display it on a webpage.
I had problems in my initial code, in that it would read in any text and it would erase whatever was in the ...
1
vote
1answer
87 views
PHP fgets with if statement
I have to input some codes in a .txt file like this:
34,bryan,ingles,23,25,30,inge,78,Aprobado Normal
20,jorge,math,20,20,20,lic,60,Pasa con lo minimo
now i have to use a php function to show a ...
0
votes
2answers
59 views
PHP and Importing pylab
I have a PHP script that calls in a python program. Here is the php script:
<?php
$last_line = popen('/Library/Frameworks/Python.framework/Versions/Current/bin/python test.py', 'r');
...
2
votes
1answer
115 views
C: Best way to read input file if only certain fields are fixed
Consider the given input:
ID Name Num
--------------------------
213DA Andrews, Dennis; 6.9 // <--- cursor initially located on 2
283JB Brown, Joanne; 2.6
420JB Brown, Joanne; ...
0
votes
1answer
222 views
Read a file line by line with fgets an parse with sscanf in C?
I have this Homework assignment where I have to read lines one by one from a file and then parse it.
The text file looks like this: The number of lines varies from file to file.
NGM8 Nguyen, ...
1
vote
1answer
55 views
C fgets not getting full text
When I use this code
char *openFile(const char file[1024]){
FILE *f = fopen(file, "r");
char c[1000];
char *d;
if (f!=NULL) {
if (fgets(c, 1000, f) !=NULL){
d = c;
}
else{
...
1
vote
2answers
112 views
How to prevent echo some char in fgets
I am using fgets to read the user input. But if I am press "Ctrl+C", I will get a ^C char on the terminal. I am wandering if there is any way to prevent this echo?
2
votes
1answer
97 views
Iterating over a string
I am trying to iterate over a string to see if the input is a whole number.
This is the code:
for (int i = 1; i < strlen(buffer); i++) //Checking that each character of the string is numeric
...
3
votes
3answers
117 views
Unexpected result with fgets
int main(int argc, char** argv)
{
//Local Declaration
char last_name[20];
char first_name[20];
char phone_number[20];
char address[30];
//Statement
printf("Enter your last name: ");
fgets(last_name, ...
3
votes
2answers
196 views
Reading and parsing lines from a file with fgets and strtok
I'm having trouble with a fairly basic bit of code. I need to read each line from the file shown below, split it up into the 3 parts with strtok, and store each part into an array. The arrays for ...
0
votes
2answers
245 views
fgets() strtok()
Hey my assignment is to read in data from a file that is separated by spaces and sort the data. I keep getting a seg fault and I can't figure out whats wrong with my code. Thanks for the help.
...
0
votes
1answer
43 views
Need help reading information line by line and from a txt file using it in code.
I've been asked to create a text file with lines containing the following format. Each type of information(or field) has to be separated by a space and each line has to end with a newline character:
...
1
vote
3answers
96 views
How do I rid newline “\n” from my array of strings after populating it with fgets()?
The array I'm working with is:
char arr[91][12];
So I populate my array from a file using a for loop like so:
for(i = 0; fgets(arr[i], 12, inFile); i++){}
When I want print anything from that ...
0
votes
2answers
87 views
Trying to read data from a text file, make a struct from it, and print the fields to stdout
I seem to have no problems reading from the file and then creating the struct, but printing the struct gives me a segmentation fault.
Employee definition
struct _Employee {
int salary; // Monthly ...






