Tell me difference between constant pointer and pointer to a constant.


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

Post New Answer

More C++ General Interview Questions

Which software is used to run c++ program?

0 Answers  


In what situations do you have to use initialization list rather than assignment in constructors?

0 Answers  


What is the basic structure of a c++ program?

0 Answers  


How const int *ourpointer differs from int const *ourpointer?

0 Answers  


Is there any difference between int [] a and int a [] in c++?

0 Answers  






What is an opaque pointer?

1 Answers  


Define a pdb file.

0 Answers  


How many types of classes are there in c++?

0 Answers  


Describe the advantages of operator overloading?

0 Answers  


Eplain extern keyword?

0 Answers  


Evaluate: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); a) 10 b) 11 c) 1

4 Answers   Quark,


What do you mean by translation unit in c++?

1 Answers  


Categories