helper function concept

G

Guest

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"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top