Tagged Questions
The fgetc tag has no wiki summary.
4
votes
5answers
854 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
241 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 ...
3
votes
4answers
48 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 ...
2
votes
6answers
64 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 ...
2
votes
4answers
125 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 ...
2
votes
2answers
104 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[])
{
...
2
votes
2answers
106 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 ...
2
votes
2answers
63 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 ...
2
votes
4answers
178 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");
...
1
vote
5answers
66 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 ...
1
vote
2answers
69 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
37 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) ) {
...
1
vote
3answers
140 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')
{
...
1
vote
2answers
58 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
388 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
1answer
41 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 ...
0
votes
2answers
43 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>
...
0
votes
2answers
66 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);
}
...
0
votes
1answer
71 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 ...
0
votes
3answers
351 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. ...