Is there any difference between int [] a and int a [] in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is a c++ class?
Generally variables are stored in heap memory. When he variables are created in stack?
How the virtual functions maintain the call up?
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
Describe delete operator?
What are the types of STL containers?
What is "mutable" keyword?
What is compilation?
When there is a global variable and local variable with the same name, how will you access the global variable?
What is the use of setfill in c++?
What is the use of namespace std in C++?
What is a forward referencing and when should it be used?