Computer Science, asked by pallaviaher87672, 3 days ago

what is the function? How are the functions declared?​

Answers

Answered by ronitsingh170707
0

Answer:

A function declaration tells the compiler about a function name and how to call the function. The actual body of the function can be defined separately. int max(int, int); Function declaration is required when you define a function in one source file and you call that function in another file.

Explanation:

Hope it helps

Similar questions