what is static?
Answers were Sorted based on User's Feedback
Answer / azaad
static is keyword which is used for a variable and also for
a method.
static variable is initialized only once (i.e)one time memory.
static method of a class should not called with an objecy it
should be called with class name...
syntax: class-name.static method()
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / suresh reddy
1. Static limits the scope of an object(variable) or a
function to the file in which it being compiled.
2. A static variable retains its value between function
calls, even though its a local variable.
3. Lifetime of a static variable is the entire program.
4. We can't use extern keyword for a static object.
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / tanaji
if we use static method ,first static method will execute then other.
| Is This Answer Correct ? | 1 Yes | 0 No |
Precompilation ?
When is an object created and what is its lifetime?
how to find the correct email address format by using the programe?
Program to read a comment string
Is react oop?
Program to check whether a word is in all capital letters
to find out the minimum of two integer number of two different classes using friend function
if u write a class do u write Assignment operator and copy constructor
What is the correct syntax for inheritance? 1) class aclass : public superclass 2) class aclass inherit superclass 3) class aclass <-superclass
What is virtual destructor? Why?
3 Answers Agile Software, College School Exams Tests, CSC,
what type of questions
what is the use of classes in c++;