What do you mean by const correctness?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the different access specifiers for the class member in c++.
What are 2 ways of exporting a function from a dll?
What is the advantage of an external iterator.
What are c++ data types?
What is an explicit constructor?
int *p = NULL; printf("%1d",p) ; what will be the output of this above code?
What are dynamic type checking?
What is Name Decoration?
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
What is the function of I/O library in C++ ?
what is the use of Namespace in c++.
Write a program to get the value of sin (x) using a library function , when x is given in degrees.