Can you Mention some Application of C/C++?
No Answer is Posted For this Question
Be the First to Post Answer
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
Can member data be public?
Can a constructor return a value?
What are the advantages of using friend classes?
Explain explicit container.
What are the rules for naming an identifier?
How can you quickly find the number of elements stored in a static array? Why is it difficult to store linked list in an array?
the maximum length of a character constant can be a) 2 b) 1 c) 8
Describe the process of creation and destruction of a derived class object?
what is oops
Is it possible to pass an object of the same class in place of object reference to the copy constructor?
What does catch(…) mean?