Prototype of C Function
What is the prototype of a C function?
Answers
Answered by
2
In computer programming, afunction prototype or function interface is a declaration of a function
that specifies the function's name and type signature (arity, parameter types, and return type), but omits the function body.
that specifies the function's name and type signature (arity, parameter types, and return type), but omits the function body.
Similar questions