what does strod return??

A

alternativa

Hi,
I have problem with the following function - it was intended to ask a
user for a 4-digits number:

double ask_for_number (void)
{
char *notint;
char s2[3];
double entered_number;

do
{
printf("\tplease enter 4-digits number: ");
scanf("%s", s2);
if ( strlen (s2) !=4 )
printf ("Wrong input - input must consist of 4 integer
numbers.\n");
else
entered_numberr = strtod(s2, &notint);
}
while (*notint);
printf ("you entered: %d", entered_number); /* ???? */
return entered_number;
};

My question is: why in the line /* ???? */ we got something else that
input number? I'd like to use entered_number in the other piece of
program, so I have to be sure it works properly... I guess this is a
matter of a strod function - could you give me a clue how it works or
how to write some similar function without strod?
best regards,
a.
 
K

Keith Thompson

alternativa said:
I have problem with the following function - it was intended to ask a
user for a 4-digits number:

double ask_for_number (void)
{
char *notint;
char s2[3];
double entered_number; [snip]
printf ("you entered: %d", entered_number); /* ???? */
return entered_number;
};

"%d" expects an int. Passing a double invokes undefined behavior.
 
J

Jack Klein

Hi,
I have problem with the following function - it was intended to ask a
user for a 4-digits number:

double ask_for_number (void)
{
char *notint;
char s2[3];

This is not a large enough array to hold four digits of input. It has
three elements, s2[0], s2[1], and s2[2]. It can either hold three
arbitrary character values -- not a string -- or a string consisting
of two characters, with the '\0' that terminates the string being in
the third and final char.
double entered_number;

do
{
printf("\tplease enter 4-digits number: ");
scanf("%s", s2);

Using the scanf "%s" conversion specifier without a length parameter
is just plain suicidal. scanf() will attempt to pull characters from
the standard input stream and store them in successive memory
locations, then store a terminating '\0' at the end. If the input
contains four characters, the first three will wind up in your array,
then scanf() will try to write the fourth character and the
terminating '\0' into memory that does not belong to you, past the end
of the array. This is undefined behavior.

And what do you think happens if the user types forty or fifty
characters?
if ( strlen (s2) !=4 )

Now you are asking the strlen() function to access memory past the end
of your array.
printf ("Wrong input - input must consist of 4 integer
numbers.\n");
else
entered_numberr = strtod(s2, &notint);
}
while (*notint);
printf ("you entered: %d", entered_number); /* ???? */
return entered_number;
};

My question is: why in the line /* ???? */ we got something else that
input number? I'd like to use entered_number in the other piece of
program, so I have to be sure it works properly... I guess this is a
matter of a strod function - could you give me a clue how it works or
how to write some similar function without strod?
best regards,
a.

There is no requirement that anything at all be output by that line.
In fact, there is no requirement that the program even reach that
point. If the array overflows, there is undefined behavior and there
are no requirements at all any more, there is no right or wrong
behavior. But if there is no undefined behavior, strlen() on the
input array will return either 0, 1, or 2, so your program will never
reach the line.

And, as Keith pointed out, your are passing a double to printf() with
a "%d" conversion specifier, which is for int values. You need to use
"%f" to output a double.

But the bigger problem is your use of an array that's too small, your
program logic insisting that the input is not valid unless it
overflows the array, and using scanf("%n") without a length modifier.

To fix your program, you need to change the definition of s2 from [3]
to [5] elements. Then you need to use "%4s", as a conversion
specifier to scanf() so it will accept only four characters, and still
have room for the '\0'.

And finally you need to use "%f" in place of "%d" as the conversion
specifier to printf().
 
E

Emmanuel Delahaye

alternativa a écrit :
Hi,
I have problem with the following function - it was intended to ask a
user for a 4-digits number:

Do you mean 4-decimal-digit number ?
double ask_for_number (void)
{
char *notint;
char s2[3];

This is good for a 2 characters string. Sounds too short for a
"4-decimal-digit number", don't you think so ?
double entered_number;

do
{
printf("\tplease enter 4-digits number: ");
scanf("%s", s2);

Bad and dangerous use of scanf(). (No input limit, no return test, no
purge...) You should have used fgets() that is much more safer.

Try this, and ask for details if you don't understand.

static long ask_for_number (void)
{
long entered_number = 0;
int err = 1;

do
{
char s2[16];
printf("\tplease enter 4-decimal-digits number: ");
fflush (stdout);

fgets(s2, sizeof s2, stdin);

/* check the input */
{
char *p = strchr(s2, '\n');

if (p != NULL)
{
/* clean */
*p = 0;
}
else
{
/* purge */
int c;

while ((c = getchar()) != '\n' && c != EOF)
{
}
}
}

if (strlen (s2) != 4)
{
printf ("Wrong input - input must consist of 4 decimal digits
numbers.\n");
}
else
{
char *notint;
entered_number = strtol (s2, &notint, 10);

if (*notint != 0)
{
printf ("Wrong input - input must consist of 4 decimal
digits numbers.\n");
}
else
{
err = 0;
}
}
}
while (err);

return entered_number;
}


int main (void)
{
long n = ask_for_number ();

printf ("you entered: %ld\n", n);

return 0;
}
 
M

M. Nejat AYDIN

Emmanuel said:
alternativa a écrit :
Hi,
I have problem with the following function - it was intended to ask a
user for a 4-digits number:


Do you mean 4-decimal-digit number ?
double ask_for_number (void)
{
char *notint;
char s2[3];


This is good for a 2 characters string. Sounds too short for a
"4-decimal-digit number", don't you think so ?
double entered_number;

do
{
printf("\tplease enter 4-digits number: ");
scanf("%s", s2);


Bad and dangerous use of scanf(). (No input limit, no return test, no
purge...) You should have used fgets() that is much more safer.

Try this, and ask for details if you don't understand.

static long ask_for_number (void)
{
long entered_number = 0;
int err = 1;

do
{
char s2[16];
printf("\tplease enter 4-decimal-digits number: ");
fflush (stdout);

fgets(s2, sizeof s2, stdin);

/* check the input */
{
char *p = strchr(s2, '\n');

if (p != NULL)
{
/* clean */
*p = 0;
}
else
{
/* purge */
int c;

while ((c = getchar()) != '\n' && c != EOF)
{
}
}
}

if (strlen (s2) != 4)
{
printf ("Wrong input - input must consist of 4 decimal digits
numbers.\n");
}
else
{
char *notint;
entered_number = strtol (s2, &notint, 10);

if (*notint != 0)
{
printf ("Wrong input - input must consist of 4 decimal
digits numbers.\n");
}
else
{
err = 0;
}
}
}
while (err);

return entered_number;
}


int main (void)
{
long n = ask_for_number ();

printf ("you entered: %ld\n", n);

return 0;
}

But, if the user enters a line such as
xxx1
where x represents a space or tab character,
then your function will return the entered number
although it is not a 4-digit number. Of course, the
correction is trivial.
 
E

Emmanuel Delahaye

M. Nejat AYDIN a écrit :
But, if the user enters a line such as
xxx1
where x represents a space or tab character,
then your function will return the entered number
although it is not a 4-digit number. Of course, the
correction is trivial.

Good catch.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,763
Messages
2,569,562
Members
45,038
Latest member
OrderProperKetocapsules

Latest Threads

Top