List out function which we can call without using object
Answer Posted / manoj kumar kar
Static Functions
Friend Functions
The above 2 functins can be called without using objects.
| Is This Answer Correct ? | 11 Yes | 0 No |
Post New Answer View All Answers
What is implicit conversion/coercion in c++?
What is the basic difference between C and C++?
Explain what are single and multiple inheritances in c++?
Which header file allows file i/o with streams a) fileio.h b) iostream.h c) fstream.h
Why is c++ called oops?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == ) y-= 7; else y = 8; if the value of x is 4 before the nested IFs are executed, what is the value of y after the nested IFs are executed?
What are register variables?
Which should be more useful: the protected and public virtuals?
What is a breakpoint?
What is c++ flowchart?
Is it possible to get the source code back from binary file?
What is the difference between containment and delegation?
Describe private, protected and public – the differences and give examples.
How the endl and setw manipulator works?
What are the 2 main types of data structures?