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


Please Help Members By Posting Answers For Below Questions

Can you pass a vector to a function?

725


What are static variables?

798


What is an adjust field format flag?

858


Can you Mention some Application of C/C++?

802


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.

2196


Implement stack operations with pointers with appropriate exception checks.

747


Do class declarations end with a semicolon?

771


What is copy constructor? Can we make copy constructor private in c++?

796


What do you mean by enumerated data type?

768


How do you define/declare constants in c++?

769


How can I disable the "echo" feature?

812


What is the use of turbo c++?

750


write a corrected statement so that the instruction will work properly. if (4 < x < 11) y = 2 * x;

1703


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.

1926


What is a driver program?

830