Question: need c++ format * A fixed-size record representing a campsite in a recreational area. struct CampsiteRecord CampsiteRecord CampsiteRecord(int number, const char descriptionll, bool has_electric, double
need c++ format

* A fixed-size record representing a campsite in a recreational area. struct CampsiteRecord CampsiteRecord CampsiteRecord(int number, const char descriptionll, bool has_electric, double rate)i static const int desc_size 128; int max storage size of description number site number char bool description[ desc_sizel I a short description has_electric; rate: /I is power available? /// per-night rate double The non-default constructor should copy its parameters into the attributes of the object. Implement it now, being sure to copy the c-string description safely. Hint: Remember, you cannot use assignment to copy c strings!. You might want to refer to your notes, book, or online documentation for a refresher on how to use strnapy from the
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
