What are the different scope C++ provide ?


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

Post New Answer

More C++ Interview Questions

What is the meaning of the following declaration: int *const *const *i?

0 Answers   Adobe,


Write a C++ Program to Find Sum and Average of three numbers.

1 Answers  


Identify the error in the following program. #include<iostream.h> void main() { int i = 0; i = i + 1; cout « i « " "; /*comment *//i = i + 1; cout << i; }

1 Answers  


How can a C function be called in a C++ program?

0 Answers  


In C++ what is the meaning of data hiding?

0 Answers   Aricent,






What are the advantages and disadvantages of B-star trees over Binary trees?

0 Answers  


Is deconstructor overloading possible? If yes then explain and if no Then why?

1 Answers  


Without using third variable write a code to swap two numbers.

0 Answers   Accenture,


In C++ what do you mean by Inheritance?

0 Answers   Accenture,


Identify the errors in the following program. #include <iostream> using namespace std; void main() { int i=5; while(i) { switch(i) { default: case 4: case 5: break; case 1: continue; case 2: case 3: break; } i-; } }

1 Answers  


Write a C++ program to print strings in reverse order.

0 Answers   Amdocs,


explain the term 'resource acquisition is initialization'?

0 Answers   Amazon,


Categories