answersLogoWhite

0

Can you pass argument to procedures?

Updated: 11/8/2022
User Avatar

Wiki User

10y ago

Best Answer

Yes. Procedures are otherwise known as functions, and functions can accept arguments.

User Avatar

Trent Rodriguez

Lvl 10
1y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Can you pass argument to procedures?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Does Donne's argument about the harmlessness of his seduction pass muster What are the steps in this argument and where, if ever, does it break down?

C


How do you pass enum object as argument to function in c?

You can't pass an enum as an argument to a function. An enum in C isn't an object, it's a type. All you can do is pass a variable that is of the particular enum's type.


Does Donne's argument about the harmlessness of his seduction pass muster what are the steps in this argument and where if ever does it break down?

In John Donne's "Elegy XIX: To His Mistris Going to Bed," he argues that the physical act of undressing his lover is innocent and simply reveals her true beauty. However, this argument breaks down in the sense that he is objectifying her body for his own pleasure without considering or respecting her autonomy and agency. While Donne may attempt to portray his seduction as harmless, the power dynamics at play reveal a disregard for his mistress's feelings and consent.


Can you pass address of the structure member as a function argument?

Yes.


Egg shampoo preparation with introductrion requirement and procedures?

answer pass


Is it legal to pass a null pointer as the first argument to realloc?

yes.


What is the term used for the variable that receives an argument that pass into a module?

parameter


Knowing the procedures and fundamentals of a classical formal debate provide the scaffold for?

Constructing logical arguments, presenting them clearly, and critically analyzing opposing viewpoints. It also helps in honing communication skills, fostering a deeper understanding of complex issues, and cultivating the ability to think critically and persuade others effectively.


How do you pass an array in Java?

The same way you pass any other argument. int[] integerArray = new int[] {5,4,3,2,1}; // Pass our integerArray to the Arrays.sort method Arrays.sort(integerArray);


Why you pass arguments to function in c plus plus?

You pass arguments to functions because that is how you tell the function what you want it to do. If you had, for instance, a function that calculated the square root of something, you would pass that something as an argument, such as a = sqrt (b). In this case sqrt is the function name, b is passed as its argument, and the return value is assigned to a.


In what way is an argument passed by so it is not affected by a change of the content of the parameter value?

Pass by value.


What does the warning Illegal Argument Exception mean in Java language?

The warning Illegal Argument Exception in Java means that one has attempted to pass a wrong type of argument for a function. For example, we have a function that calculates a sum of two numbers and feed it a text string, which results in Illegal Argument Exception.