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 ?
|
|
|
The As for why Catching this situation involves checking for a non-negative value:
|
|||||||||||||
|
|
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 |
|||
|
|
That means -1 as a long (rather than the default type for numbers, which is an integer) |
|||
|
|
|
|
|||
|
|