0
What is function in c program ?
3 Respuestas
+ 1
A function is a group of statements that together perform a task. Every C program has at least one function, which is main(), and all the most trivial programs can define additional functions. ... A function declaration tells the compiler about a function's name, return type, and parameters.
https://www.tutorialspoint.com/cprogramming/c_functions.htm
https://www.javatpoint.com/functions-in-c
https://www.programiz.com/c-programming/c-functions-examples
0
function paintBrush(color){
Instructions
}
You can use a paint brush wherever you want to use with different colours.
By the way use the search bar for more!
0
NEZ very nice a simplified answer. Well puts().