Computer Science, asked by sunilkumar197625, 11 months ago

how dunction declaration ends?

Answers

Answered by nivabora539
0

Answer:

A function is a group of statements that together perform a task. ... A function declaration tells the compiler about a function's name, return type, and parameters. A function definition provides the actual body of the function. The C standard library provides numerous built-in functions that your program can call.

Explanation:

When a program calls a function, the program control is transferred to the called function. A called function performs a defined task and when its return statement is executed or when its function-ending closing brace is reached, it returns the program control back to the main program.

please mark me as brainlist.

Similar questions