I have seen #ifndef ABC and #if !defined (ABC) in the same C source file.
Is there subtle difference between them? (If it is a matter of style, why would someone use them in the same file)
|
I have seen Is there subtle difference between them? (If it is a matter of style, why would someone use them in the same file)
| |||
|
feedback
|
|
No, there's no difference between the two when used that way. The latter form (using The variance (using both in a file) could depend on specific subtleties in usage, as mentioned above, or just poor practice, by being inconsistent. | |||
|
feedback
|
|
In the context you gave, they are the same: you are just checking for the existence of one macro identifier. However, the #if form allows you to evaluate expressions, which can be useful. | |||
|
feedback
|
|
| |||
|
feedback
|