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
Differentiate between a copy constructor and an overloaded assignment operator.
What is an iterator?
What is the difference between a type-specific template friend class and a general template friend class?
How do you save a c++ program?
What is c++ best used for?
What is a c++ object?
I want to write a C++ language program that: 1. Reads in the size of a square from the screen; 2. Prints a hollow square of that size out of “-“, “|” and blanks on screen; 3. Prints the same hollow square onto a text file. The program should work for squares of all side sizes between 1 and 20.
Does there exist any way to make the command line arguments available to other functions without passing them as arguments to the function?
What are the advantages of c++ over c?
which one is equivalent to multiplying by 2:Left shifting a number by 1 or Left shifting an unsigned int or char by 1?
Why is c++ is better than c?
What is pointer to array in c++?
Does a derived class inherit or doesn't inherit?
To what does “event-driven” refer?
What are the two shift operators and what are their functions?