függvényhívást
Függvényhívás, in English function call, refers to the process of executing a specific block of code, known as a function or subroutine, within a computer program. When a function is called, the program's execution flow is temporarily transferred to the called function. This allows for modularity and code reuse, as a single function can be invoked from multiple locations within a program.
During a function call, control is passed to the beginning of the function's code. Any arguments, or
Once the function has completed its execution, it may return a value to the part of the