Computer Science, asked by princemb1891, 8 months ago

The function are predefined and supplied along with the compiler are called

Answers

Answered by poojan
2

Answer:

The function are predefined and supplied along with the compiler are called built-in functions or library functions.

Examples: main(), printf(), scanf(), strcpy(), etc.

Explanation:

Generally, the things we use mostly and repeatedly in almost every program are coded and stored in libraries pre definedly.

For example, the input and ouput statements like printf(), scanf() etc are used most often, and by almost all the programmers. Even in type changing and castings too.

To make the things easy, such that programmers need not code them every other time as they are almost used by every coder out there in their code, simply they are coded and installed with the software, in the form of libraries. All we need to do is to import them.

Hope it helps. Cheers!

Similar questions