What is the use of ::(scope resolution operator)?


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

Post New Answer

More C++ General Interview Questions

What are the differences between java and c++?

0 Answers  


Given the following function definition: int doit(int &x, int y, int &z) { x = 3*x; y = y + 5; z = x+y; return z - 4; } int a = 5, b = 7, c = 9, d = 11; d = doit(a,b,c);

2 Answers  


What is an arraylist c++?

0 Answers  


Explain selection sorting. Also write an example.

0 Answers  


what is upcasting in C++?

0 Answers  






What is a dangling pointer?

3 Answers   Glenwood,


How do we balance an AVL Tree in C++?

0 Answers   Impetus,


Where must the declaration of a friend function appear?

0 Answers  


What is the difference between = and == in C?

16 Answers   Christ University, Intel,


write a program to insert an element into an array

26 Answers   TCS,


Explain what is polymorphism in c++?

0 Answers  


let a,b,c be three integer numbers.write a c++ program with a function void rotate 1()such that a->b->c and c->a.

1 Answers  


Categories