What is scope resolution operator
Explain what is meant by the term scope resolution operator?
Expert
a) Scope resolution operator is used in order to uncover the hidden variables. It also enables access to the global version of the variables.
For example:
#include<iostream. h> int m=10; // global variable m void main ( ) { int m=20; // local variable m cout<<”m=”<<m<<”\n”; cout<<”: : m=”<<: : m<<”\n”; }
output: 20 10 (: : m access global m)
b) Scope resolution operator is also used in order to describe the function outside the class.
Syntax:
Return type <class name> : : <function name>
Eg:
Void x : : getdata()
Explain what member functions and data members are?
Explain two types of the Polymorphism.
Explain what is dynamic initialization of the variables?
Provide some of the features of the procedure-oriented language.
Explain what are the data members and the member functions?
Explain the meaning of reference variable?
Explain what is enumerated data type?
Explain what are the free store operators or the Memory management operators?
State Polymorphism.
What is meant by an inline function?
18,76,764
1954854 Asked
3,689
Active Tutors
1439478
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!