Difference between Overloading and Overriding?
Answer Posted / abc
overload is workload
but override is not workload......
isn't it ??????
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
which one is equivalent to multiplying by 2:Left shifting a number by 1 or Left shifting an unsigned int or char by 1?
What does it mean to declare a destructor as static?
Write a program to find the Factorial of a number
What is auto type c++?
Which one is better- macro or function?
What is long in c++?
What is meaning of in c++?
Explain container class.
A prime number is a number which is divisible only by itself and 1. Examples of the first few primes are 2, 3, 5, 7, 11. Consider writing a program which can generate prime numbers for you. Your program should read in and set a maximum prime to generate and a minimum number to start with when looking for primes. This program should be able to perform the following tasks: 1. Read the maximum number from user (keyboard input) to look for primes. The program should not return any primes greater than this number. 2. Read the minimum number from user (keyboard input) to look for primes. The program should not return any primes less than this number. 3. Generate and print out every prime number between the maximum prime and minimum number specified by the user.
What are the advantages of pointers?
In int main(int argc, char *argv[]) what is argv[0] a) The first argument passed into the program b) The program name c) You can't define main like that
If you push the numbers (in order) 1, 3, and 5 onto a stack, which pops out first a) 1 b) 5 c) 3
What is #include math h in c++?
Why is c++ so fast?
What are c++ data types?