The getc tag has no wiki summary.
0
votes
1answer
55 views
User input to make a linked list
Any help would be great.
I have a project for a c 99 programming class that requires us to ask a user for a sentence and then take that sentence char-by-char and store each char individually in a ...
1
vote
1answer
42 views
What does it mean, when Term::ReadKey::ReadKey returns “0”?
With dumpkeys --long-info called in a Linux-Terminal I get these values:
# ...
0x0000 nul
0x0001 Control_a
0x0002 Control_b
0x0003 Control_c
0x0004 Control_d
# ...
When I run this script and ...
0
votes
3answers
77 views
Tokenizing user input in C (store in **arg)?
I'm attempting to write a simple shell like interface, that takes in a users input (by char) and stores it via a pointer to a pointer* (exactly how argv works). Here's my code:
char input[100];
char ...
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 ...
2
votes
2answers
161 views
IO::Handle to get and unget unicode characters
I think I've run into a problem with Unicode and IO::Handle. It's very likely I'm doing something wrong. I want to get and unget individual unicode characters (not bytes) from an IO::Handle. But I'm ...
1
vote
1answer
128 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("$"); ...
0
votes
2answers
107 views
Capturing the return/enter as keystroke to quit program
This program reads in a file and then asks the user to enter a number of lines to be displayed. After the number of lines have been displayed, the user is prompted again for either more lines to be ...
0
votes
2answers
101 views
Unknown Logical Error Using the getc() Function in C
I'm attempting to use the getc() function to copy the contents of one file into another. But I'm making an unknown logical error because the output of the following program is a bunch of garbage.
...
5
votes
3answers
336 views
Is the getc and putc implementation of K&R right?
In the K&R, chapter 8, it has a custom implementation of the putc and getc functions. In the first definition of getc, if the parameter is stdin, according to the definition of _iob, the function ...
0
votes
2answers
79 views
Know the row with max characters (C)
I have written a program in C, to find the row with the max number of characters.
Here is the code:
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include ...
0
votes
1answer
107 views
Replace a character with “argv[2]”
I have some code here:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
int main (int argc, char *argv[])
{
char c;
FILE ...
7
votes
3answers
4k views
Reading \r (carriage return) vs \n (newline) from console with getc?
I'm writing a function that basically waits for the user to hit "enter" and then does something. What I've found that works when testing is the below:
#include <stdio.h>
int main()
{
...
1
vote
0answers
114 views
Perl's getc issue in SIGINT handler in perl 5.14.2
Here is my testing environment:
root@redhat89195 bin]# ./perl -v
This is perl 5, version 14, subversion 2 (v5.14.2) built for x86_64-linux-thread-multi
.....
Code snippet:
$SIG{INT}=sub{
...
0
votes
4answers
124 views
getc(fp) causing trouble
Here is my code.
#include<stdlib.h>
#include<stdio.h>
int main(int argc,char** argv)
{
char a;
a=9;
FILE * fp;
fp=fopen(argv[1],"r");
while(a!= EOF)
{
...
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 ...
2
votes
2answers
895 views
Ruby STDIN.getc does not read char on reception
Seems that Ruby IO#getc wait until receiving a \n before returning the chars.
If you try running this script:
STDOUT.sync = true
STDIN.sync = true
while data = STDIN.getc
STDOUT.puts "Char ...
0
votes
4answers
335 views
how to make arrays from txt file C
I got text file with information: (100;200;first).Can anybody tell me how to seperate this information into three arrays: Min=100,Max=200 and Name=first. I have tried this whith
c=getc(inp);
...
3
votes
5answers
1k views
Calculate Character Frequency in Message using Perl
I am writing a Perl Script to find out the frequency of occurrence of characters in a message. Here is the logic I am following:
Read one char at a time from the message using getc() and store it ...
-1
votes
3answers
513 views
Why is my program using Perl's getc function not working properly?
I want to calculate the frequency of occurrence of chars in a message using Perl. For instance, if the char "a" appears 10 times in a message, then the frequency would be 10. To do this, I am reading ...
0
votes
1answer
151 views
How Can I Get getc() to Return a Character Besides a Smiley Face?
I am trying to write a simple 'cat' clone in C. I'm running Windows 7 and using the MinGW compiler. However, whenever I run the program, it returns the text file but with each character replaced with ...
5
votes
1answer
5k views
getc Vs getchar Vs Scanf for reading a character from stdin
Of the below three functions:
getc
getchar &
scanf
which is the best one for reading a character from stdin and why?
Are there any known disadvantages or limitations for any of these functions ...
3
votes
1answer
235 views
How can I diagnose problems with Perl's getc?
I am having this strange problems with the getc function. I use getc to get a character from a socket file handler. I need to simulate message exchanges between pc and a mobile device. For the first ...