What do you mean by const correctness?


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

Post New Answer

More C++ General Interview Questions

Explain the different access specifiers for the class member in c++.

0 Answers  


What are 2 ways of exporting a function from a dll?

0 Answers  


What is the advantage of an external iterator.

0 Answers  


What are c++ data types?

0 Answers  


What is an explicit constructor?

1 Answers  






int *p = NULL; printf("%1d",p) ; what will be the output of this above code?

3 Answers   Microsoft,


What are dynamic type checking?

0 Answers  


What is Name Decoration?

2 Answers   Lucent,


1. What does the following do: void afunction(int *x) { x=new int; *x=12; } int main() { int v=10; afunction(&v); cout<<v; } a) Outputs 12 b) Outputs 10 c) Outputs the address of v

5 Answers   Quark,


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

0 Answers   HCL,


what is the use of Namespace in c++.

3 Answers  


Write a program to get the value of sin (x) using a library function , when x is given in degrees.

1 Answers  


Categories