Answered step by step
Verified Expert Solution
Question
1 Approved Answer
can i use two header file . h in intmain .cpp like in photo C Shape.h > #includerstring> class shape { protected: float width; float
can i use two header file . h in intmain .cpp
C Shape.h > \#includerstring> class shape \{ protected: float width; float height; public: void set_data(float w, float h) \{ width=w; height =; 3 C Triangle.h >... \#includesstring> \#include"Shape.h" ciass Triangle : public shape \{ public: float area () I return (width*height)/2; 3 \#include \#include"Triangle. h " \#include"Rectangle. "" " using namespace std; int main() Triangle ti; t1.set_data (10,10); Rectangle r1; M1.set_data (10,10) like in photo
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started