The fgetc tag has no wiki summary.
0
votes
2answers
59 views
Can i use fgetc() or fputc() in a binary file?
I am creating an archive program in C, and i want it to save files i provide, list and extract them.
I had many issues because i used a text file for saving, and it is not the best choice if i want ...
1
vote
2answers
90 views
C: EOF detection & fgetc
OBJECTIVE:
How to implement EOF successfully to stop the infinite loop?
part where the function is called:
do {
pId = readInputField(fptr, DELIMITER_SPACE);
pName = readInputField(fptr, ...
2
votes
2answers
58 views
Almost the same code, but different output, why?
I'm working with UTF-8 encoded text files,and cant find proper solution...
after I couldn't solve a problem with string, I'm trying fgetc() now, but it also doesn't work.
This code:
$file = ...
0
votes
1answer
58 views
fgetc is always returning value 1
there is the following function:
void readAndPrint(FILE * f) {
int c;
while(c = fgetc(f) != EOF) {
printf("%d", c);
}
}
In the main() body I used the following code to use the ...
0
votes
2answers
39 views
“Walking ” trough file making changes, PHP
I want to replace each character in file with another one by one "walk" through the file.
It is like using fgetc(), but I also need to replace that char.
My file is big, which is the best way to do ...
1
vote
2answers
123 views
C - reading past end of file with fgetc
I have the weirdest thing happening, and I'm not quite sure why it's happening. Basically what I need to do is use fgetc to get the contents of a simple ASCII file byte by byte. The weird part is it ...
4
votes
9answers
167 views
Searching for a word in a text using C, and display the info after that word
Say i have a text file that says:
User: John
Device: 12345
Date: 12/12/12
EDIT*
I have my code to successfully search for a word, and display the info after that word. However when i try to edit ...
0
votes
1answer
108 views
C: Count `new line` until double space is reached
Basically I am trying to read a "block" of data from a file that looks something like
000000000
000000001
000100000
100000000
000000000
000000000
000000000
The above example would translate into ...
-1
votes
1answer
124 views
How to read in object files in C?
Let's say there's an object file input.obj. In the terminal, if I do "cat input.obj," it returns some random characters like "???A?J." But when I "hexdump" it, it shows the values I want to read in ...
2
votes
4answers
319 views
fgetc stops when recognizing new line (\n)
I have this code:
while( (cCurrent = fgetc(fp)) != EOF)
{
}
The problem is, when it hits a new line it stops reading.
What would be a good way to ignore the newline character?
Edit:
I'm trying ...
0
votes
1answer
150 views
C fgetc() on socket/file stream while checking for EOF goes into infinite loop
int main(int argc, char *argv[]) {
int conn_s = socket(AF_INET, SOCK_STREAM, 0);
struct addrinfo hints;
hints.ai_family = AF_INET;
hints.ai_socktype = SOCK_STREAM;
...
0
votes
1answer
58 views
c debug assertion for calling fgets/fgetc/feof
hey sorry for bothering if this is a really simple issue, but I can't seem to solve this debug assertion failure after so many different trials.
I'm merely executing the following code. I have tried ...
0
votes
2answers
187 views
C: edit file to remove null characters:
I thought this would be an easy task, after a couple of tries I try the tried and true write to a temp than reopen and rewrite:
#include <stdlib.h>
#include <stdio.h>
int main()
{
...
1
vote
1answer
127 views
fgetc,getc causes the program to crash when reading from text file [closed]
Whats wrong? I'm pretty sure my syntax is correct since it has no warnings. Plus it won't go past getc(document); I tried fgetc(document); same result. What am I not getting here? (I used printf("$"); ...
1
vote
1answer
64 views
FGETC library name in Fortran?
Is there a library that I can explicitly link to my Fortran code to find FGETC function? I'm getting linker errors for unresolved external symbol for the fgetc function and I tried using 'USE IFPORT' ...
1
vote
4answers
727 views
fgetc(stdin) in a loop is producing strange behaviour
I have this code
while(1){
printf("hello world !\n");
fgetc(stdin);
}
when this runs and I enter a letter like this:
hello world !
a
it ignores the fgetc(stdin) in the next loop and ...
0
votes
2answers
170 views
fgetc read file line by line
So I'm working on a function that will use fgetc to read a line into a buffer. so I can use that buffer as I please, and then refill the buffer with the next line. My function works however I have to ...
0
votes
2answers
86 views
File reading and character counting
I'm trying to read in a file and then output the file by characters. I want the user to enter a number which will be the number of lines to be displayed.
Without the following line, my code will ...
0
votes
2answers
106 views
Cant seem to get fgetc working the second time reading a file
I'm reopening and reading a file, SORTED.txt, after closing it from its first time use - copying all the contents of another file, UNSORTED.txt.
After copying from UNSORTED.txt, I wanted to count the ...
0
votes
1answer
254 views
read char from file
I would like to know why my program gets wrong result. I just need to read characters from file including white space, (.), (,), and others and output them in particular string format.
As a result I ...
-3
votes
1answer
137 views
How can I implement a sort using C?
I need to implement a sort in C.
I tried using fgets to get successive lines and compare and swap their order, but I experience a problem when I try to swap lines of lower order to upper orders.
Are ...
0
votes
4answers
89 views
C: Handling fgetc input from file streams
OK, I'm working on a spellcheck program in C. The bit I'm having trouble with is reading a word from the system dictionary into the program. I've searched for an answer but I couldn't find anything ...
3
votes
2answers
424 views
fgetc, checking EOF
In the book Linux System Programming I have read some like this:
fgetc returns the character read as an unsigned char cast to an int or
EOF on end of file or error. A common error using fgetc ...
0
votes
3answers
111 views
fgetc() doesn't work properly
I have file that goes like 7 4 5 1 etc. I want to put these number in a multi-dimensional array.
for(x=0;x<9;x++)
for(y=0;y<9;y++)
{
current=fgetc(fp);
...
2
votes
4answers
331 views
C: Low level character formatting: (enter+newline) using fgetc
I'm working on a project on C that reads a text file and converts it to an array of booleans.
First I read the file to a string of size n (is a unsigned char array), then I use a function to convert ...
0
votes
2answers
172 views
C - using fgetc to store value in enum 'class'
I am writing a program that accepts a file with database entries in it. The entries are all in the same format, with the data in the same order. The first number in the file is the number of ...
1
vote
1answer
177 views
How does fgetc work internally
Does it actually read character by character or does it read some bytes into the kernel buffer and return to the user- character by character?
Is it the same with fgets?
Let me say I use glibc and a ...
0
votes
3answers
236 views
Reading input from fgetc() and printing with printf()
Okay, I'm sure there's something I'm missing here, but I have no idea what it is and I'm hoping someone could help me figure it out.
I'm reading in input from the command line and was writing a ...
0
votes
1answer
171 views
Fstream _Fgetc access violation
I'd like to read line from file with fstream (I used this before with no errors), but now if I call getline, I get access violation exception. I traced exception thru code to function _Fgetc from ...
1
vote
5answers
385 views
Implementing fgetc; trying to read word by word
I am trying to read word by word, and below is the logic that I have adopted. This is reading in the words fine, except when it gets to the last word in a line, in which it stores the last word of the ...
2
votes
5answers
247 views
Different output content file copy in C
Hello i had a simple copy file program in C but i cant explain why i get different output in the destination file when i use the 2nd method.
The correct output with for loop:
I am the worst ...
3
votes
4answers
151 views
fgetc null terminator
I'm doing an exercise in K&R:
Write a program detab that replaces tabs in the input with the proper number of blanks to space to the next tab stop.
And this is what I have so far (w/o error ...
4
votes
5answers
1k views
Comparing unsigned char and EOF
when the following code is compiled it goes into an infinite loop:
int main()
{
unsigned char ch;
FILE *fp;
fp = fopen("abc","r");
if(fp==NULL)
{
printf("Unable to ...
1
vote
2answers
109 views
what is the output of fgetc under the special case where int width == CHAR_BIT
In section 7.19.7.1 of C99, we have:
If the end-of-file indicator for the input stream pointed to by stream is not set and a
next character is present, the fgetc function obtains that character ...
1
vote
1answer
82 views
fgetc reference variable
I'm playing a bit of fun code golf, and I'm running into an issue:
Golfed:
<? while($v=fgetc(STDIN)){echo$v?$v:'';while((int)$v)echo--$v?$v:'';}
ungolfed:
<?
while ( $v = fgetc(STDIN) ) {
...
0
votes
2answers
156 views
Consecutive calls to fgetc in C
I am working on implementing a brainfuck interpreter, and I'm struggling with the call of two consecutive , commands.
Here's an extract of my code:
#include <stdio.h>
#include <stdlib.h>
...
1
vote
3answers
1k views
How do i print escape characters as characters?
I'm trying to print escape characters as characters or strings using this code:
while((c = fgetc(fp))!= EOF)
{
if(c == '\0')
{
printf(" \0");
}
else if(c == '\a')
{
...
2
votes
2answers
563 views
How do I get fgetc to print all the characters of a file inside of a loop
I'm playing around with fgetc and was wondering how I would get my loop to print the line section once then print the first 16 characters.
Here is my code:
int main(int argc, char * argv[])
{
...
0
votes
2answers
163 views
Is this an acceptable way to determine EOF while reading a file in PHP?
I am fairly new to PHP and just trying to convert something I did in C. The idiom for reading from a file in C that I was taught was:
while ((c = getchar()) != EOF) {
doSomethingWith(c);
}
...
2
votes
2answers
342 views
How do I use sscanf to get names and print them out the way i want them to
I'm making a program that takes names from the user seperated by commas. The program allows the user to put as many or as little spaces as they want between the commas. So for example:
If I were to ...
0
votes
1answer
420 views
reading files using fgetc
I have a question about using fgetc to count characters in a specified file.
How do you use it when you have to count character types separately? Like for example I only want to count the number of ...
1
vote
2answers
70 views
Why do these two methods return different things?
So...I was trying to make my own simple keylogger and this works for things typed at the shell, but if I double click the executable file it just puts a lot of these in the file: ΓΏ
I understand that ...
1
vote
4answers
1k views
C segmentation fault errors with feof() and fgetc()
Can anyone help me solve my dilemma? When I compile my program I get no errors or warnings. When I go to actually run the executable, though, I get a segmentation error. If I'm to understand ...
0
votes
3answers
1k views
Manually move the fgetc file pointer to the next line
Question 1: How can I manually move the fgetc file pointer from its current location to the next line?
I'm reading in data character by character until a specified number of delimiters are counted. ...
2
votes
2answers
105 views
fopen got some strange behaviors
I have file called denem.txt and has content
123456789
123456789
123456789
When we open a file with mode 'a+b' PHP is supposed to place the pointer to end of the file which means when I try to get ...
6
votes
5answers
3k 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 ...
5
votes
1answer
510 views
fgetc does not identify EOF
Below program runs fine on solaris/linux various flavor, but not on AIX.
on AIX while(c!=EOF) if i replace by while(c!=0xff) it just run fine completely
Any thought ? i checked the man page ...
2
votes
4answers
256 views
Trouble with characters in C
Why does this not compile? Cant see the error
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int main(void)
{
char *c;
FILE *f = fopen("file.txt", "r");
...