i meant in the private zone intialiazation for example before public and after private size is given value 80 in this private zone but for int datatype it's not possible in the private zone
Since C++11 you are allowed to initialize member variables where you declare them, previously this was not allowed: http://www.stroustrup.com/C++11FAQ.html -> "In-class member initializers".
Please try to rephrase your question if that's not the answer you're looking for.
Like today i asked my teacher the same question and he sayed that's not intializing when you use enum data type becuase enums are used for flags data types are int , floats etc and no datatype declaration can be intailzed in the private zone
1 2 3 4 5 6 7
class distance
{
private:
enum sz={80};
int arr[sz];
public:
distance():arr[sz](0){}
in this case i am trying to imply private zone is from line 4-5