Which of the following is the correct syntax of including a user defined header files in C++? b) #include “userdefined” c) #include d) #include

Which of the following is the correct syntax of including a user defined header files in C++? b) #include “userdefined” c) #include d) #include Correct Answer userdefined

C++ uses double quotes to include a user-defined header file. The correct syntax of including user-defined is #include “userdefinedname”.

Related Questions

Which of the following is the correct syntax of including a user defined header files in C++?