Const char *p , char const *p What is the difference between the above two?
No Answer is Posted For this Question
Be the First to Post Answer
How can you prevent accessing of the private parts of my class by other programmers (violating encapsulation)?
Name four predefined macros.
when can we use virtual destructor?
7 Answers HCL, HP, Virage Logic,
What is #include iomanip?
What is the Difference between "printf" and "sprintf"?
7 Answers iSoft, PentaWare, TCS,
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
what is the difference between linear list linked representaion and linked representation? what is the purpose of representing the linear list in linked represention ? is it not avoiding rules of linear represention?
What are C++ inline functions?
Difference between struct and class in terms of access modifier.
Draw a flow chart and write a program for the difference between the sum of elements with odd and even numbers. Two dimensional array.
What is the difference between the indirection operator and the address of oper-ator?
What is the function of the keyword ‘volatile’ in C++?