Cards (4)

  • Function Call
    Syntax:
    functionName(argumentList);
    where:
    argumentList - list of values to be passed when a function is called. Must match the data type of the parameter list. It is sometimes called actual arguments.
  • Function Call
    Syntax:
    functionName(argumentList);
    where:
    argumentList - list of values to be passed when a function is called. Must match the data type of the parameter list. It is sometimes called actual arguments.
  • Function Call
    Syntax:
    functionName(argumentList);
    where:
    argumentList - list of values to be passed when a function is called. Must match the data type of the parameter list. It is sometimes called actual arguments.
  • Function Call Example:
    int result = addFunction(5, 10);
    printDisplayFunction(“Hello, World!”);