What is the difference between #import and #include?
No Answer is Posted For this Question
Be the First to Post Answer
Is there a datatype string in c++?How is the memory allocation?
Why use of template is better than a base class?
What is implicit conversion/coercion in c++?
Is c++ a programming language?
What are inline functions? What is the syntax for defining an inline function?
What is a unnitialised pointer?
what are the iterator and generic algorithms.
what is data abstraction in C++?
Difference between class and structure.
What are the advantages of prototyping?
What is a node class in c++?
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