Computer Science, asked by skis0634, 5 hours ago

how to include a header file in c++​

Answers

Answered by sumitdhadchire12
0

Answer:

You make the declarations in a header file, then use the #include directive in every . cpp file or other header file that requires that declaration. The #include directive inserts a copy of the header file directly into the . cpp file prior to compilation

Similar questions