Scope Resolution Oprator
Scope Resolution Oprator
Scope resolution operator(::) is used to define a function outside a class or when we want to use
a global variable but also has a local variable with same name.
// global variable
int main() {
char c = 'b';
//local variable
return 0;