Function in C Programming language
Functions- Functions in c language A function is group of statements that together perform a task. Every C program has at least one function, which is main(). Every function has a name and it is reusable. It can take parameters called as argument. Properties- Every function has a unique name. This name is used to call function from "main()" function. A function can be called another function. A function is independent and it can perform its task without intervention from or interfering with other parts of the program. A function returns a value to the calling program. this is optional and depends upon the task your function is going to accomplish. Structure of a Function <return type>FunctionName(Argument1,Argument2,Argument3..............) { ...