Declare a structure named TempScale with the following membe
     Declare a structure named TempScale with the following members: (10) fahrenheit: a double  centigrade: a double 
  
  Solution
/****************Declaration of Structure****************/
struct TempScale{
 double fahrenheit;
 double centigrade;
 };
/*****************Declaration End**********************/
If you have any query please feel free to ask.
Thanks a lot

