Scope resolution operator, symbol ::, is an operator in C++ which specifies that the scope of the function is restricted to the particular class.
Use of scope resolution operator:
Return-type Class-name :: function-name (parameter list)
{
function body
}

Example:

float calc :: sum(float a, float b)
{
    float sum;
    sum = a + b;
    return sum;
}

About our authors: Team EQA

You have viewed 1 page out of 62. Your C++ learning is 0.00% complete. Login to check your learning progress.

#