Differences between inline functions and non-inline functions?
Answer Posted / ankita
inline functin for execution switching time is required but
noy in case of non inline function
| Is This Answer Correct ? | 1 Yes | 5 No |
Post New Answer View All Answers
Whats is abstraction in oops?
can inline function declare in private part of class?
How to use CMutex, CSemaphore in VC++ MFC
Can enum be null?
What is oops?what is its use in software engineering?
What is the point of oop?
What are oops functions?
write a program to enter a string like"sunil is a good boy and seeking for a job" not more than 10 characters including space in one line,rest characters should b in other line.if the next line starts from in between the previous word,then print whole word to next line.
What is destructor oops?
Why is it so that we can have virtual constructors but we cannot have virtual destructors?
Give an example where we have to specifically use C programming language and C++ programming language cannot be used?
What is polymorphism and why is it important?
class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash
Why is destructor used?
Are polymorphisms mutations?