answersLogoWhite

0

*Return variable type* *Function Name* (*Function parameters*)

For example:

int MyFunction (x,y)

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

When do you declare a method or class final?

if we declare a method as final then it can be changed.


How do declare function pointer having two integer parameters and returning integer pointers?

// declare a function int* function(int, int); or int* (function)(int, int); // declare a pointer to a function int* (*pointer_to_function)(int, int);


How can you declare a pointer function?

*function();this declares a pointer function!


Can you declare a function in the body of another function in c language?

yes, we can not declare a function in the body of another function. but if we declare a function in the body of another function then we can call that very function only in that particular function in which it is declared; and that declared function is not known to other functions present in your programme. So if a function is required in almost all functions of your programme so you must declare it outside the main function i.e in the beginning of your programme.


How to use the delphi method?

first declare and then call


What you declare in the function prototype in c?

yes


What is friend datatype in object-oriented programming?

A friend is any class, class method or function that is declared to be a friend of a class. Friends have private access to the classes that declare them friends.


When do you declare a method or class abstract in java?

when overriding of a class or a method is necessary, they can be declared as abstract


When do you declare a method final in java?

You declare a method final in Java when you do not want any subclasses of your class to be able to override the method. I have also heard that this allows the Java compiler to make more intelligent decisions. For example, it supposedly allows Java to decide when to make a method inline. (Note that this is all unconfirmed)


Why you do not declare the function prototype?

Your question makes no sense.


Which is the keyword used to limit the scope of a function to the file in which it resides?

Declare the function static.


Which is the keyword used to limit the scope of the function to the file in which it is reside?

Declare the function static.