Computer Science, asked by wasimkhan1996, 1 month ago

What is the meaning of the following function
prototype ?
float fun(void)​

Answers

Answered by trisha2117
5

Answer:

In computer programming, a function prototype or function interface is a declaration of a function that specifies the function’s name and type signature (arity, data types of parameters, and return type), but omits the function body. While a function definition specifies how the function does what it does (the "implementation"), a function prototype merely specifies its interface, i.e. what data types go in and come out of it.

Explanation:

Please mark me brainliest and drop some thanks na. ❤️☺️

Similar questions