InterviewSolution
Saved Bookmarks
| 1. |
What is a built-in function in C? |
|
Answer» The most commonly used built-in FUNCTIONS in C are sacnf(), printf(), strcpy, strlwr, STRCMP, strlen, strcat, and many more. Built-function is also known as library functions that are PROVIDED by the system to make the life of a developer easy by ASSISTING them to do certain commonly used predefined tasks. For example, if you need to PRINT output or your program into the terminal, we use printf() in C. |
|