7
votes
6answers
172 views
scanf() causing infinite loop
I've a small C-program which just reads numbers from stdin, one at each loop cycle. If the user inputs some NaN, an error should be printed to the console and the input prompt shou …
1
vote
8answers
234 views
Scanf skips every other while loop in C
I'm trying to develop a simple text-based hangman game, and the main game loop starts with a prompt to enter a guess at each letter, then goes on to check if the letter is in the w …
2
votes
3answers
55 views
Validate max integer in scanf
I want to read a int from stdin but I want to validate if the user exceeds the int max value. How can I do it?
int n;
scanf("%d", &n);
scanf reads the decimal input and store …
0
votes
1answer
59 views
What is the difference between these three fscanf calls in OCaml?
I wrote a short bit of code to simply skip num_lines lines in an input file (printing the lines out for debugging purposes. Here's two things I tried that didn't work:
for i = 0 …
2
votes
5answers
230 views
How to prevent scanf causing a buffer overflow in C?
I use this code:
while ( scanf("%s", buf) == 1 ){
What would be the best way to prevent possible buffer overflow so that it can be passed strings of random lengths?
I know I c …
0
votes
1answer
101 views
Read In Hex Values (C)
Hello all.
I am currently attempting to read in Hex values from a text file.
There can be multiple lines of Hex's and each line can be as long as needed:
f53d6d0568c7c7ce
1 …
4
votes
5answers
212 views
How to Take whitespace in Input in C
I wanted to take character array from console and it also include white spaces, the only method i know in C is scanf, but it miss stop taking input once it hit with white space. Wh …
0
votes
3answers
95 views
Can I use scanf to capture a directive with a width specified by a variable?
I have the following code:
scanf(" %Xs %Ys", buf1, buf2);
Where X and Y should be integers. The problem is that the values for X and Y are compile-time constants, and even if I …
4
votes
4answers
1k views
Looking for C# equivalent of scanf
I used to code in C language in the past and I found the scanf function very usefull.
Unfortunately, there is no equivalent in C#.
I am using using it to parse semi-structured tex …
0
votes
3answers
229 views
Simple C Program
Ok so I am trying to learn C and I want my user to input a value so I am using scanf. I started off not having the flushes, because nothing was comming up until I typed in two val …
0
votes
6answers
229 views
Help While Loop in C
I'm new to C programming, I come from a Java background. I was wondering why in the following code, in the while loop I have to type my input ten times and then all ten inputs are …
2
votes
4answers
140 views
Getting multiple values with scanf()
I am using scanf() to get a set of ints from the user. But I would like the user to supply all 4 ints at once instead of 4 different promps. I know I can get one value by doing:
s …
3
votes
1answer
124 views
don’t care in scanf
Imagine the following:
you read in a string with scanf() but you only need a few of the datapoints in the string.
Is there an easy way to throw away the extraneous information, w …
1
vote
1answer
105 views
Regarding linux debugger ddd
ddd when encounters scanf stmt, it displays "Waiting until GDB gets ready" message. The debugging activity stops here. Pls guide me of overcoming this bug pls.
configuration amd64 …
1
vote
3answers
292 views
How does scanf() work inside the OS?
I've been wondering how scanf()/printf() actually works in the hardware and OS levels. Where does the data flow and what exactly is the OS doing around these times? What calls does …
