What are virtual functions in 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
Do you know what is overriding?
What is the advantage of an external iterator.
Can we use clrscr in c++?
If you had the following code: int x = 23; int *y; y = &x; The instruction y++; does what?
Explain function overloading
What type of question are asked in GE code writing test based on c++ data structures and pointers?
What does flush do c++?
How do you define a class in c++?
Which is not an ANSII C++ function a) sin() b) tmpnam() c) kbhit()
Explain rtti.
How many lines of code you have written for a single program?