What are references in c++? What is a local reference?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

What is size of a object of following class? class Foo { public: void foo(){} }

2 Answers   CA,


Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == 4 ) y-= 7; else y = 8; Enter a segment of code (without any IF statements) that does exectly the same thing using the switch structure.

1 Answers  


What is overloading unary operator?

0 Answers  


Which one of the following describes characteristics of "protected" inheritance? a) The base class has access only to the public or protected members of the derived class. b) The derived class has non-public, inheritable, access to all but the private members of the base class. c) The derived class has access to all members of the base class. d) The private members of the base class are visible within the derived class. e) Public members of the derived class are privately accessible from the base class.

4 Answers   Quark,


What are the 3 levels of programming languages?

0 Answers  






What do you mean by inheritance in c++? Explain its types.

0 Answers  


What is the function of I/O library in C++ ?

0 Answers   HCL,


What is the main purpose of overloading operators?

0 Answers  


What is setfill c++?

0 Answers  


Why do we use structure in c++?

0 Answers  


How do you clear a map in c++?

0 Answers  


What will i and j equal after the code below is executed? Explain your answer.

1 Answers  


Categories