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()
Hello I would like to know if the following assignment can be completed by Monday. I would like this program to be done in both C++. Thank You
Explain what is dynamic initialization of the variables?
State Polymorphism.
What is the out put and why? class Class_name main() // Declarations num index num SIZE = 10 num numbers[SIZE] = 0,0,0,0,0,0,0,0,0,0 index = 0 while index < SIZE numbers[index]= index * 10 index = index + 1 endwhile output “The Output is: ” while index > 0 index = index – 1 o
Explain what are the data members and the member functions?
Provide any four benefits of OOPS.
What is meant by an inline function?
Describe what are symbolic constants?
Explain what is meant by the term keywords?
18,76,764
1942055 Asked
3,689
Active Tutors
1457728
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!