Answer to Question 25B-3

  #include "tools.h"
says to include a file called tools.h that is found in the same directory as the file that contains this #include line. But
  #include <tools.h>
says to include a file called tools.h that is found in the standard library.