Question 1Add header guards to this header file:add.hint add(int x, int y); Solution#add.h#ifndef ADD_H #define ADD_H int add(int x, int y); #endif