Tagged Questions
The scanf() function reads data with specified format from a given string stream source.
25
votes
4answers
13k views
Why does scanf() need “%lf” for doubles, when printf() is okay with just “%f”?
Why is it that scanf() needs the L in "%lf" when reading a double, when printf() can use "%f" regardless of whether its argument is a double or a regular-precision float?
Example code:
double d;
...
11
votes
8answers
805 views
Are there any practical applications for the format %n in printf/scanf family?
int x;
printf("hello %n World\n", &x);
printf("%d\n", x);
10
votes
2answers
644 views
Is scanf's “regex” support a standard?
Is scanf's "regex" support a standard? I can't find the answer anywhere.
This code works in gcc but not in Visual Studio:
scanf("%[^\n]",a);
It is a Visual Studio fault or a gcc extension ?
EDIT: ...
10
votes
6answers
8k 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 text files.
I found an ...
9
votes
6answers
2k views
Disadvantages of scanf
I want to know what disadvantage of scanf() exist.
In many of a sites I have read that using scanf will cause buffer overflow some times. What is the reason for that, and is there any other ...
9
votes
6answers
3k views
Why is scanf() causing infinite loop in this code?
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 should return again. On ...
8
votes
3answers
1k views
While scanf!=EOF or scanf==1?
Ceteris paribus (well formed data, good buffering practices and what not), is there a reason why I prefer to loop while the return of scanf is 1, rather than !EOF? I may have read this somewhere, or ...
7
votes
1answer
194 views
Can `std::istream::operator>>()` accept integer radix prefixes like stdio's %i format specifier?
When using scanf() and its variants, the format specifier %i will accept data as hex (prefixed "0x"), octal (prefixed "0"), or decimal (no prefix), so for example the strings "0x10", "020", and "16" ...
7
votes
2answers
1k views
ANSI C (ISO C90): Can scanf read/accept an unsigned char?
Simple question: Can scanf read/accept a "small integer" into an unsigned char in ANSI C?
example code un_char.c:
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
unsigned ...
7
votes
5answers
7k views
parsing input with scanf in C
I've been having a lot of problems trying to figure out how to use scanf. It seems to work fine with integers, being fairly straight forward scanf("%d", &i).
Where I am running into issues is ...
6
votes
4answers
284 views
Use of [] in fscanf()
I've a text file with following contents:
"abc","def","ghi"
The following works to read the file contents properly:
int main()
{
char name[1024] = {0};
FILE *file = fopen("file.txt", "r");
...
6
votes
9answers
675 views
scanf() (C Language ) confused me
When do I need to insert/don't insert & for scanf() in C? Thank you.
int main()
{
char s1[81], s2[81], s3[81];
scanf("%s%s%s", s1, s2, s3);
// If replace scanf() with the expression ...
6
votes
6answers
11k views
How do you allow spaces to be entered using scanf?
Using the following code:
char *name = malloc(sizeof(char) + 256);
printf("What is your name? ");
scanf("%s", name);
printf("Hello %s. Nice to meet you.\n", name);
A user can enter their name ...
6
votes
3answers
745 views
Is there an inverse function of *SysUtils.Format* in Delphi
Has anyone written an 'UnFormat' routine for Delphi?
What I'm imagining is the inverse of SysUtils.Format and looks something like this
UnFormat('a number %n and another %n',[float1, float2]);
...
5
votes
3answers
71 views
C: why no & for strings in scanf() function? [closed]
Possible Duplicate:
Why doesn't scanf need an ampersand for strings and also works fine in printf (in C)?
In C when we use the scanf() function to get user input, we always use the ...
5
votes
3answers
171 views
scanf Cppcheck warning
Cppcheck shows the following warning for scanf:
Message: scanf without field width limits can crash with huge input data. To fix this error message add a field width specifier:
%s => %20s
%i ...
5
votes
3answers
163 views
scanf %d segfault at large input
So I ran some static code analyzer over some c code and one thing that surprised me was a warning about:
int val;
scanf("%d", &val);
which said that for large enough input this may result in a ...
5
votes
3answers
224 views
scanf() curious behaviour!
I recently stumbled upon a curious case(atleast for me, since I hadn't encountered this before)..Consider the simple code below:-
int x;
scanf("%d",&x);
printf("%d",x);
The above code takes a ...
5
votes
2answers
684 views
scanf: “%[^\n]” skips the 2nd input but “ %[^\n]” does not. why?
Consider the following code:
#include <stdio.h>
int main (void)
{
char str1[128], str2[128], str3[128];
printf ("\nEnter str1: ");
scanf ("%[^\n]", str1);
printf ("\nstr1 = %s", ...
5
votes
3answers
191 views
Strange output on using scanf
#include <cstdio>
int main()
{
int i;
printf("%d", scanf("%d", &i));
}
Whatever number i input, i get the output:
1
Why is it so?
5
votes
3answers
208 views
Reading a string with scanf
I'm a little bit confused about something. I was under the impression that the correct way of reading a C string with scanf() went along the lines of
(never mind the possible buffer overflow, it's ...
5
votes
5answers
1k 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. What i should do?
...
4
votes
4answers
94 views
C scanf format string warning
I'm working on Euler #3 (http://projecteuler.net/problem=3). I think I've got the logic right, but I'm getting an error when trying to use scanf (and printf) with a long. I'm current trying to use %li ...
4
votes
4answers
149 views
scanf(), Linux's shell input in handled differently, why?
I got the following.
my-app.c file:
char username[USERNAME_MAX_LEN] = "\0";
char password[PASSWORD_MAX_LEN] = "\0";
scanf("%s %s", username, password);
printf("username-len: %ld, password-len: ...
4
votes
4answers
141 views
Is there a way to read a c-string and then an int with a single scanf in C?
Hey,
I'm trying to get this function to get the following output with the listed input, the "..." is where I'm not sure what to write:
void Question8(void)
{
char sentence[100];
int grade; ...
4
votes
4answers
775 views
Simple C scanf does not work?
If I try something such as:
int anint;
char achar;
printf("\nEnter any integer:");
scanf("%d", &anint);
printf("\nEnter any character:");
scanf("%c", &achar);
printf("\nHello\n");
...
4
votes
2answers
858 views
C getchar vs scanf
I am confused by a piece of code found in a function I am studying:
char GetCommand( void )
{
char command;
do {
printf( "Enter command (q=quit, n=new, l=list): " );
scanf( ...
4
votes
3answers
5k views
reading a string with spaces with sscanf
For a project I'm trying to read an int and a string from a string. The only problem is sscanf appears to break reading an %s when it sees a space. Is there anyway to get around this limitation? ...
4
votes
5answers
2k views
Input in C. Scanf before gets. Problem
I'm pretty new to C, and I have a problem with inputing data to the program.
My code:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(void) {
int a;
...
4
votes
4answers
2k views
Dynamic String Input - using scanf()
I am trying to read input using scanf and storing into char * dynamically as specified by GCC manual.
But it is giving compile time error.
char *string;
if (scanf ("%as",&string) != 1){
...
4
votes
10answers
3k 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 word and takes a life ...
4
votes
6answers
9k views
How to validate input using scanf
How can I validate the user input by using scanf. Right now I have something like this, but doesn't work.
NOTE: I have the atoi just to validate that the scanf validation works.
...
3
votes
5answers
82 views
How exactly does space work with scanf?
I am a math student, and I'm learning the very basics in programming in C. I need a program to read an input consisting in an array, the components of which must have certain requisites; I would like ...
3
votes
4answers
85 views
Scanf understandings
I am going through some examples in a book I have and I have come to something I've never seen before nor understand:
scanf("%d-%d-%d-%d-%d", &prefix, &group, &publisher, &item, ...
3
votes
4answers
140 views
what is the Java equivalent of sscanf for parsing values from a string using a known pattern?
So I come from a C background (originally originally, though I haven't used that language for almost 5 years) and I'm trying to parse some values from a string in Java. In C I would use sscanf. In ...
3
votes
3answers
118 views
Having Trouble in SImple C Program
I'm having problem with a simple C program. Even if I enter a year between 1000 and 1999 it still displays invalid year. Please tell me what's happening??
#include <stdio.h>
main()
{
int ...
3
votes
2answers
170 views
fscanf bus error: 10 when switching from Snow Leopard to Lion
First off, this snippet is not meant for production code. So please, no lecturing about it "being unsafe." Thanks!
So, the following code is part of a parser that takes in a csv and uses it to ...
3
votes
2answers
92 views
Scanf erases a char array unwillingly
See the following program:
#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
#include <string.h>
main(void){
printf("Array ...
3
votes
6answers
233 views
What does space in scanf mean?
#include <stdio.h>
int main(int argc, char* argv[]) {
char c;
scanf(" %c", &c);
printf("%c\n", c);
return 0;
}
[root@test]# ./scanf
a
a
[root@test]# ./scanf
h
h
It seems ...
3
votes
6answers
125 views
scanf(%d,..) in a loop, when given a char once is not blocking
I wrote this code:
char str[10];
while(1)
{
scanf("%d",str);
}
if given a char ('a' for example) the loop just keep on going without stopping and asking for more input (the ...
3
votes
6answers
138 views
Writing my first C program and I can't get past this dumb bug
I'm using xCode because I found the debugger to be very useful. So in the debugger I see, after I enter the students name name[0] = \0 no matter what. But then the rest of the name will be correct. ...
3
votes
5answers
470 views
scanf ignoring, infinite loop
while (flag==0){
printf("\nEnter Product price: ");
scanf("%d",&sale.m_price);
if (sale.m_price==0) PrintWrongInput();
else flag=1;
}
sale is a struct,
...
3
votes
4answers
385 views
Char* p, and scanf
I have been trying to look for a reason why the following code is failing, and I couldn't find one.
So please, excuse my ignorance and let me know what's happening here.
#include<stdio.h>
int ...
3
votes
2answers
574 views
Using ifstream as fscanf
Assume that I have an input as follows:
N (X_1,Y_1) (X_2,Y_2) .... (X_N, Y_N)
where N, X_i and Y_i are integers.
An example:
2 (55,1) (521,7)
To read this, I can do something like this(assume ...
3
votes
2answers
159 views
why i'm having problems with scanf and gets?
when i'm trying to use scanf and gets, i'm having trouble, i need to put gets twice, if i put it once my program is terminated, it's homework and i have to use those functions in those places.
the ...
3
votes
4answers
170 views
Problem with scanf() on mac
I compile a C library on mac os x. When I typed the input and after printing on the screen the data I don't see something.
char *path = NULL;
peerdisplay = "Bob";
printf("Insert the full 'To' path: ...
3
votes
3answers
229 views
Unable to find bug in this C program
I'm unable to find bug in this C program.
#include <stdio.h>
int main()
{
struct book
{
char name ;
float price ;
int pages ;
} ;
struct book ...
3
votes
2answers
528 views
fgets instructions gets skipped.Why?
Whenever I do a scanf before a fgets the fgets instruction gets skipped. I have come accross this issue in C++ and I remember I had to had some instrcution that would clear the stdin buffer or ...
3
votes
2answers
353 views
Is getchar() equivalent to scanf(“%c”,&a)?
Is getchar() equivalent to scanf("%c",&a);?
Is putchar(c) equivalent to printf("%c",a); where a is a char variable?
3
votes
4answers
5k views
what is scanf(“%*s”) and scanf(“%*d”) format identifiers?
What is the practical use of the formats "%*" in scanf(). If this format exists, there has to be some purpose behind it. The following program gives weird output.
#include<stdio.h>
int main()
{
...