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
What is lambda in c++?
What does new in c++ do?
What is c++ programming language?
Can I create my own functions in c++?
Which software is best for programming?
What is null and void pointer?
What programming language should I learn first?
Why Pointers are not used in C++?
Can I make ios apps with c++?
Give the difference between the type casting and automatic type conversion. Also tell a suitable C++ code to illustrate both.
Why do you use the namespace feature?
What is == in programming?
Is c++ harder than java?
What is namespace std; and what is consists of?
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.