helper function concept

  • Thread starter Thread starter Guest
  • Start date Start date
What is helper function concept? I am new to C.

the term 'helper function' generally indicates a small function that
performs a task that is done repeatedly in your code.

for example, if you need to disable or enable buttons on the user interface.
you can write a helper function that enables or disables all buttons. that
way you can use it in different places in your code without having to program
the same code twice or more. using helper functions makes you code easier to
read, and easier to verify.

kind regards,
Bruno.
(e-mail address removed)
Remove only "_nos_pam"
 
Back
Top