Saved Bookmarks
| 1. |
What is the difference between in-built functions and user-defined functions? |
|
Answer» A programmer has to write a user-defined function, whereas in-built functions are available to a programmer in the standard ‘c++’ libraries. Due to this, the in-built functions are also known as library functions. Eg: sqrt(), setw(), strlen( ), strcat(), etc., |
|