Working on a simple C program I'm stuck with an if test:

int line_number = 0;
if ((line_number >= argv[2]) && (line_number <= argv[4]))

gcc says:

cp.c:25: warning: comparison between pointer and integer
cp.c:25: warning: comparison between pointer and integer

What can I do to properly check the range of lines I want to deal with?

link|improve this question

1  
You may find it helpful to structure range checks all in "one line", e.g. if (a <= b && b <= c), which represents the a <= b <= c meaning. – Roger Pate Mar 9 '10 at 0:04
feedback

2 Answers

up vote 8 down vote accepted

Of course it doesn't work: argv is a pointer to pointer to char.. it's not clear what you want to do but think about that argv[2] is third parameter and argv[4] is fifth one. But they are of char* type (they are strings) so if you want to parse them as integers you should do it using the function atoi:

int value = atoi(argv[2]);

will parse int that was as third parameter and place it into variable, then you can check whatever you want.

link|improve this answer
Thanks Jack, you made myd day :) – Zenet Mar 8 '10 at 23:38
3  
Well, you probably should do it using strtol. atoi is easier to use but harder to handle bad input. – Steve Jessop Mar 8 '10 at 23:44
feedback

You should not be using function atoi. If fact, you should forget it ever existed. It has no practical uses.

While Jack's answer is correct in stating that the argv strings have to be converted to numbers first, using atoi for that purpose (specifically in the situation when the input comes from the "outside world") is a crime against C programming. There are virtually no situations when atoi can be meaningfully used in a program.

The function that you should be using in this case is strtol

char *end;
long long_value = strtol(argv[2], &end, 10);
if (*end != '\0' || errno == ERANGE)
  /* Conversion error happened */;

The exact error checking condition (like whether to require *end == '\0') will actually depend on your intent.

If you want to obtain an int in the end, you should also check the value for int range (or for your application-specific range)

if (long_value < INT_MIN || long_value > INT_MAX)
  /* Out of bounds error */;

int value = long_value;
/* This is your final value */
link|improve this answer
While I agree that you should not use atoi most of the time, it is practical to use it when you already know the input is valid. For example, you might've already validated the data against a BNF grammar as part of some larger parsing. – Roger Pate Mar 8 '10 at 23:57
1  
"previous answer"? This is the top-rated answer. There's no "previous". atoi does not appear in the question anywhere. Can you edit this answer so it makes sense as a "stand-alone" answer? – S.Lott Mar 8 '10 at 23:59
Thanks Andrey for your reply, but I don't see why I should never use atoi? is it not a POSIX function? – Zenet Mar 9 '10 at 0:01
1  
@nour: I consider the issue from C language point of view (not involving POSIX). atoi function provides no means for error checking. For example, overflow in the input causes undefined behavior in atoi. Which is why atoi is useless. In your case the input comes from outside, from the user. This is exactly the case when the error checking is mandatory. – AndreyT Mar 9 '10 at 0:04
1  
Notice that your error condition does not account for an empty input string (when end will always point to the terminating '\0') – Johannes Schaub - litb Mar 9 '10 at 1:12
show 7 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.