answersLogoWhite

0


Best Answer

In most languages, you can't have names with space, for functions, variables, etc. Assuming your function is called myFunction, the usual way to call it is:

myFunction()

This assumes the function requires no parameters. If the function does require parameters, the parameters will be included within parentheses.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

12y ago

version1:

myFunction (parameterlist);

version2:

retvalue= myFunction (parameterlist);

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you call a function named my function?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is a single computer function that initiates a string of commands?

A call to a subroutine. A subroutine is a named/labeled set of commands.


What function in Microsoft Excel 2003 to write the amount in word?

Such a function does not exist for English. A function call BAHTTEXT will do it for the Thai language.Such a function does not exist for English. A function call BAHTTEXT will do it for the Thai language.Such a function does not exist for English. A function call BAHTTEXT will do it for the Thai language.Such a function does not exist for English. A function call BAHTTEXT will do it for the Thai language.Such a function does not exist for English. A function call BAHTTEXT will do it for the Thai language.Such a function does not exist for English. A function call BAHTTEXT will do it for the Thai language.Such a function does not exist for English. A function call BAHTTEXT will do it for the Thai language.Such a function does not exist for English. A function call BAHTTEXT will do it for the Thai language.Such a function does not exist for English. A function call BAHTTEXT will do it for the Thai language.Such a function does not exist for English. A function call BAHTTEXT will do it for the Thai language.Such a function does not exist for English. A function call BAHTTEXT will do it for the Thai language.


What is meant by a function call?

A function call is where you "call" a function and execute its body. For example: void example() { } int main() { example(); // call the function "example" and execute its bodyreturn 0; }


Which function call Does not consume stack space?

Calling an in-line function, which is not actually a function-call.


What is if function withan an if function call?

A nested function.


What is a function reference in Excel?

A function can reference cells or named ranges in the function.


What do you call the inverse function of the exponential function?

Logarithmic Function


What is Bios function call in 8086 microprocessor?

The BIOS function in the 8086 microprocessor is called an interrupt function. It is an interrupt function because it is not called by a function call instruction.


Assignment object oriented data and process simple task?

write a class implementation for a class_my class that contains the data member ID of type integer and data member MSG of type string (to hold a simple description of any created object (local,global,static,automatic))then follow what come serially 1-create a global void function named create_fun to create 2 objects:obj1 local automatic to create_fun,and obj2 static to create_fun. 2-constructor with 2 arguments to initialize object data member ID and MSG with any given value. 3-a destructor to print the ID and MSG of any terminated object. 4-a global object named obj3. 5-a local object to the main function named obj4. 6-a static local object to the main function named obj5. 7-call function create_fun from the main function. 8-create a local object named obj6 to the main function. 9-call function create_fun from the main function. 10-create a local object named obj7 to the main function.


Is it possible to call library function recursiviely?

No, once you call a library (or any) function, you have to wait until it has returned.Of course the function may call itself, but you do not know or care of that.


What do you call the process of testing flow of control between a main function and its subordinate function?

function-call and returning (actually, it is 'passing', not 'testing')


Why main function named as main why not start or anything else?

The int main() function named main because by writing this we are trying to reduce the name conflicts from the above function defination which can be anything by the user defined function