How to include header files
问题 Does it matter how I import header files? I've seen double quotes as well as arrows used. #include <stdlib.h> #include "Some_Header.h" Does it matter if they're capitalized a certain way as well? Experimenting around with this, it seems neither matters, but I figure there must be a reason for tutorials doing it the way they do. Another question is, (coming from Java here), how do I access a class outside the file it was defined in? Say, I have one.cpp and two.cpp. In one.cpp: class Something