473,394 Members | 1,893 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

what does strod return??

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.

Jan 1 '06 #1
6 5738
"alternativa" <al***********@wp.pl> writes:
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.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <*> <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Jan 1 '06 #2
On 31 Dec 2005 16:13:51 -0800, "alternativa" <al***********@wp.pl>
wrote in comp.lang.c:
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().

--
Jack Klein
Home: http://JK-Technology.Com
FAQs for
comp.lang.c http://c-faq.com/
comp.lang.c++ http://www.parashift.com/c++-faq-lite/
alt.comp.lang.learn.c-c++
http://www.contrib.andrew.cmu.edu/~a...FAQ-acllc.html
Jan 1 '06 #3
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;
}
--
A+

Emmanuel Delahaye
Jan 1 '06 #4
thanks a lot, I'll work on it :)

Jan 1 '06 #5
Emmanuel Delahaye wrote:
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.
Jan 1 '06 #6
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.

--
A+

Emmanuel Delahaye
Jan 2 '06 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: antonyliu2002 | last post by:
I know it returns the string that fills the TextBox. What does it return when nothing is put into the TextBox? The empty string ""? Or Null? Or Nothing? I haven't been able to figure it out.
4
by: Vikas Rana | last post by:
Hi all, I am a bit confused about the method java.sql.DatabaseMetaData.nullsAreSortedHigh(). What exactly does this return? If this returns true, are nulls considered as the highest value? Or...
21
by: Niu Xiao | last post by:
I see a lot of use in function declarations, such as size_t fread(void* restrict ptr, size_t size, size_t nobj, FILE* restrict fp); but what does the keyword 'restrict' mean? there is no...
18
by: Seeker | last post by:
I essentially copied this program from K&R: #include <stdio.h> #include <stdlib.h> int main() { int c;
13
by: Protoman | last post by:
I'm getting an error: 10 C:\Dev-Cpp\Enigma.cpp no match for 'operator<' in 'i < (+cleartext)->std::basic_string<_CharT, _Traits, _Alloc>::end ()' Code: Enigma.hpp...
9
by: James Dow Allen | last post by:
How about this idea? Post fragments of C code which seem fun, interesting or instructive. Puzzles can be posed in various ways. (What does this do? Can you see the bug? How to code this for...
10
by: thomas | last post by:
Hi, It's known that strdup() returns a char* type, but sometimes the following code generates warning messages. char *x = ... char *p = strdup(x); You must change it to
3
guillermobytes
by: guillermobytes | last post by:
Hi, I was wondering what does PDO return when there are no records matching the query? i.e. i query for a column.name = 'John' and there is no 'John' in the table. thanks for your answer. ...
21
by: rahul sinha | last post by:
When you type one character and press enter, it prints two values, so it turns out that it does read "enter" from the input buffer. What does getchar actually return on reading enter? Moreover I...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.