Function call
Updated: 04/26/2017 by Computer Hope
A function call is a request made by a program or script that performs a predetermined function. In the example below, a batch file clears the screen and then calls another batch file.
@echo off
cls
call other.bat