I noticed that .h files have their name capitalized and uses underscore for header guards....why is that?
for example take "doThat.h"
the header guard would be:
#ifndef DO_THAT_H
#define DO_THAT_H
why is it capitalized and underscored like that? even if in the main.cpp you only type #include "doThat.h" to use the file?? There is some real programing reason to this? why not just type :