Top "Parameter-passing" questions

parameter-passing is the process of assigning values to the parameters of a function

How to keep already-set GET parameter values on form submission?

I have a URL : foo.php?name=adam&lName=scott, and in foo.php I have a form which …

php get parameter-passing forms
How do I print a fibonacci sequence to the nth number in Python?

I have a homework assignment that I'm stumped on. I'm trying to write a program that outputs the fibonacci sequence …

python parameter-passing fibonacci
Passing an *Awaitable* Anonymous Function as a Parameter

Code first. This is what I'm trying to do. I'm close, but I think I just need to fix the …

c# asynchronous lambda parameter-passing
Why do we need to specify the column size when passing a 2D array as a parameter?

Why can't my parameter be void example(int Array[][]){ /*statements*/} Why do I need to specify the column size of …

c arrays parameters multidimensional-array parameter-passing
How to pass a type to generic method in Kotlin?

I have a generic method like below private fun <T> getSomething(): T { return "something" as T } How can …

generics kotlin parameter-passing generic-type-argument
Optional argument in PL/pgSQL function

I am trying to write a PL/pgSQL function with optional arguments. It performs a query based on a filtered …

postgresql stored-procedures parameters parameter-passing plpgsql
Invoke direct methods or methods with arguments / variables / parameters in EL

How can I in JSF 2.0 invoke direct methods or methods with arguments / variables / parameters in EL? For example, getting the …

jsf methods arguments parameter-passing el
How can I use "Dependency Injection" in simple php functions, and should I bother?

I hear people talking about dependency injection and the benefit of it all the time, but I don't really understand …

php dependency-injection parameter-passing
Is Java really passing objects by value?

Possible Duplicate: Is Java pass by reference? public class myClass{ public static void main(String[] args){ myObject obj = new myObject("…

java parameter-passing terminology pass-by-reference pass-by-value
Passing parameters to bash when executing a script fetched by curl

I know how to execute remote Bash scripts like this: curl http://example.com/script.sh | bash or bash < &…

bash curl parameter-passing