Answer Posted / hrpynux@gmail.com
A function that is built into an application and can be accessed by end-users. For example, most spreadsheet applications support a built-in SUM function that adds up all cells in a row or column
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How would you call C functions from C++ and vice versa?
How a new element can be added or pushed in a stack?
Which format specifier is used for printing a pointer value?
I was a c++ code and was asked to find out the bug in that. The bug was that he declared an object locally in a function and tried to return the pointer to that object. Since the object is local to the function, it no more exists after returning from the function. The pointer, therefore, is invalid outside.
Why #include is used?
Can a Structure contain a Pointer to itself?
Name the debugging methods that are used to solve problems?
Explain static and dynamic memory allocation with an example each.
What is the difference between a declaration and a definition?
How do you declare a set in c++?
Evaluate as true or false: !(1 &&0 || !1) a) True b) False c) Invalid statement
What can c++ be used for?
What is the best ide for c++?
Why is c++ so fast?
What is the difference between equal to (==) and assignment operator (=)?