#include <string> #include "Birthday.h" class Person { public: Person(string n, Birthday b) : name(n), bd(b) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

#include <string> #include "Birthday.h" class Person { public: Person(string n, Birthday b) : name(n), bd(b)

please explain #include"birthday.h"

19th Apr 2018, 4:47 PM
Akshat2001
Akshat2001 - avatar
2 Answers
+ 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
19th Apr 2018, 5:29 PM
🌛DT🌜
🌛DT🌜 - avatar
0
https://code.sololearn.com/c6unUc64v2be/?ref=app
14th May 2018, 6:46 PM
Agnibha Chakraborty
Agnibha Chakraborty - avatar