C++ Will the following code segment compile? If not, indicate why. If it does not compile, provide any fix(es) within the extent of the following code that would enable a clean compile. Assume all...


C++



  1. Will the following code segment compile? If not, indicate why. If it does not compile, provide any fix(es) within the extent of the following code that would enable a clean compile.
    Assume all proper includes and using statements are correct.



// header/declaration


using namespace std;


class myClass


{


    void print();  ;


    myClass();



    int Value;


};




// implementation


#include


#include “myClassheader.h”


using namespace std;


myClass::myClass()


{


  Value = 0;


}


void myClass::print()


{


  cout < “value="“">< value=""><>


}




// client code


#include


#include “myClassheader.h”


using namespace std;


int main () {



myClass myObject;



myObject.print();



}



Jun 09, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here