What is a built-in function?



What is a built-in function?..

Answer / 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

More C++ General Interview Questions

write infinite loop in C++ which does not use any variable or constant?

3 Answers  


Do vectors start at 0 c++?

0 Answers  


Write a c program for binary addition of two 8 bit numbers.

0 Answers   TCS,


Can inline functions have a recursion? Give the reason?

3 Answers  


What is Virtual Inheritance?

7 Answers   Amazon, Wipro,






What is the output of the following 3D Array int arr[3][2][2]={1,2,3,4,5,6,7,8,9,10,11,12}; what is the output for arr[2][1][0]?

6 Answers   HCL, Integra, IPMC, ORG,


In a function declaration, what does extern mean?

0 Answers  


Of the numbers 12 23 9 28 which would be at the top of a properly implemented maxheap a) 28 b) 9 c) Any of them could be

0 Answers  


Difference between shift left and shift right?

1 Answers   Symphony,


What is a constructor in c++ with example?

0 Answers  


Which uses less memory? a) struct astruct { int x; float y; int v; }; b) union aunion { int x; float v; }; c) char array[10];

4 Answers   Quark,


What is an opaque pointer?

1 Answers  


Categories