Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What do "-1L", "1L" etc. mean in C ?

For example, in ftell reference, it says

... If an error occurs, -1L is returned ...

What does this mean ? What is the type of "1L" ?

Why not return NULL, if error occurs ?

share|improve this question

5 Answers

up vote 23 down vote accepted

The L specifies that the number is a long type, so -1L is a long set to negative one, and 1L is a long set to positive one.

As for why ftell doesn't just return NULL, it's because NULL is used for pointers, and here a long is returned. Note that 0 isn't used because 0 is a valid value for ftell to return.

Catching this situation involves checking for a non-negative value:

long size;
FILE *pFile;

...

size = ftell(pFile);
if(size > -1L){
    // size is a valid value
}else{
    // error occurred
}
share|improve this answer
Ok, i got it. Then how do I catch the situation where ftell returns -1L ? --- if(ftell(fp) == -1L) {} ? or if(ftell(fp) == -1) {} ? – Jevgeni Bogatyrjov Nov 6 '10 at 23:00
@Jevgeni, edited to give you an example – Mark Elliot Nov 6 '10 at 23:03
So, if L represents long, which characters represent other types? Is there a related reference on the net? – Jevgeni Bogatyrjov Nov 6 '10 at 23:09
@Jevgeni, see this list. It's not complete, though. It's missing at least L for a wchar_t string. – Matthew Flaschen Nov 6 '10 at 23:13
2  
@Mat: It's also partly incorrect, isn't it? In C the type of 'c' is int, not char. – sepp2k Nov 6 '10 at 23:35
show 4 more comments

It means to return the value as a long, not an int.

share|improve this answer

ftell() returns type long int, the L suffix applied to a literal forces its type to long rather than plain int.

NULL would be wholly incorrect because it is a macro representing a pointer not an integer. Moreover when cast to an integer (implicitly or explicitly) and NULL pointer will have value zero, which is a valid stram position that ftell() might return.

For all intents and purposed you can generally simply regard the error return as -1, the L suffix is not critical to correct operation in most cases due to implicit casting rules

share|improve this answer
+1 for being the only person who seems to know the difference between pointers and integers. – R.. Nov 7 '10 at 0:41

That means -1 as a long (rather than the default type for numbers, which is an integer)

share|improve this answer

-1 formated in long int is a -1L. Why not simple NULL? Because NULL in this function is a normal result and can't sygnalize error too. Why NULL in this function is a normal result? Because NULL == 0 and ftell returns position in a stream, when you are on start of stream function returns 0 and this is a normal result not error, then if you compare this function to NULL to check error, you will be get error when you will be on start position in stream.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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