+ 3
#include <string> #include "Birthday.h" class Person { public: Person(string n, Birthday b) : name(n), bd(b)
please explain #include"birthday.h"
2 Respostas
+ 14
#include "user_defined"
the header files included in this form "file" are user defined header files...
#include <string> search for header file in standard list
while #include "file_name.h" is user defined
check out this link for more 👇
https://www.tutorialspoint.com/cprogramming/c_header_files.htm
0
https://code.sololearn.com/c6unUc64v2be/?ref=app