🎴 Flashcard Mode
C Programming & Technology Basics
Card1 / 14
Mastered0
Review0
QuestionClick to flip
When using a built-in function, you must?
AnswerClick to flip back
A
include the proper header file.
💡 Explanation:
When using built-in functions in C/C++, you must include the proper header file that contains the function's prototype. Header files like <stdio.h>, <math.h>, or <string.h> declare the functions so the compiler can validate their usage. The function's actual definition is in the library, which is linked during compilation. You don't need to redefine the function or specify its length.