Difference between Constructors and static constructors?
Answer Posted / nayer plame
In C++ the difference is: static constructor do not exist in
C++ and constructors do exist
Is This Answer Correct ? | 7 Yes | 1 No |
Post New Answer View All Answers
Can you pass a vector to a function?
What are static variables?
What is an adjust field format flag?
Can you Mention some Application of C/C++?
find the two largest values among the 6 numbers using control structures : do-while,for,if else,nestedif- else ,while. one or two of them.
Implement stack operations with pointers with appropriate exception checks.
Do class declarations end with a semicolon?
What is copy constructor? Can we make copy constructor private in c++?
What do you mean by enumerated data type?
How do you define/declare constants in c++?
How can I disable the "echo" feature?
What is the use of turbo c++?
write a corrected statement so that the instruction will work properly. if (4 < x < 11) y = 2 * x;
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 is a driver program?