What is a function specifically for C? [duplicate]

-2

What is a C function useful for?

    
asked by anonymous 02.06.2018 / 01:00

1 answer

-1

Functions are key elements of language C. It is what allows language to be modular.

Each function is composed of statement lines, which perform various operations or declare data structures in RAM.

A function has:

  • a return type
  • none, one or more parameters
  • own scope
02.06.2018 / 01:10