You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
C system headers (more precisely: headers in angle brackets with the .h extension), e.g., <unistd.h>, <stdlib.h>.
the clarification actually makes things worse - any file can be included via angle brackets, all they do is tell the compiler to search in some predefined path, rather than the local directory.
if i have the following files:
root/
hello.h
nice/
bye.h
then, within root/nice/bye.h, the order of the following lines is not clear:
if i have the following files:
then, within
root/nice/bye.h
, the order of the following lines is not clear:on one hand,
hello.h
is within angle brackets. on the other hand, it's another library's / my project's.h
file.please help :)
The text was updated successfully, but these errors were encountered: