Explain how to initialize a const member data.
No Answer is Posted For this Question
Be the First to Post Answer
What is near, far and huge pointers? How many bytes are occupied by them?
What is c++ flowchart?
int main() { int i ,a[i]; i = 0; a[i] = 10; cout<< a[i] << endl; return 0; } What will be output of this program?
What is vectorial capacity?
wap to accept 10 numbers & display the number of odd and even numbers??
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
Explain the difference between c++ and java.
How would you find out if a linked-list is a cycle or not?
what are the types of Member Functions?
What is encapsulation in c++ with example?
When should we use multiple inheritance?
How does throwing and catching exceptions differ from using setjmp and longjmp?