What is the word you will use when defining a function in base class to allow this function to be a polimorphic function?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between inline functions and macros?
Is C++ case sensitive a) False b) Depends on implementation c) True
What is vectorial capacity?
What is the purpose of decltype?
Is c++ still in demand?
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
How do you define/declare constants in c++?
Explain method of creating object in C++ ?
What is auto type c++?
Can class objects be passed as function arguments?
Draw a flow chart and write a program for the difference between the sum of elements with odd and even numbers. Two dimensional array.
Specify different types of decision control statements?