Describe the main characteristics of static functions?
Answer / atul shankhwar
The main characteristics of static functions include,
It is without the a this pointer,
It can't directly access the non-static members of its class
It can't be declared const, volatile or virtual.
It doesn't need to be invoked through an object of its class, although for convenience, it may.
| Is This Answer Correct ? | 0 Yes | 0 No |
You're given an array containing both positive and negative integers and required to find the sub-array with the largest sum (O(N) a la KBL). Write a routine in C for the above.
What is called array?
How do I make turbo c++ full screen?
How the endl and setw manipulator works?
What do you know about near, far and huge pointer?
What do you mean by abstraction in C++?
Will a catch statement catch a derived exception if it is looking for the base class?
Where can I run c++ program?
When we use Abstract Class and when we use Interface?where we will implement in real time?
How can an improvement in the quality of software be done by try/catch/throw?
When copy constructor can be used?
What is the main purpose of c++?