3
votes
2answers
59 views

How to pass a value in a return function as an argument on another function, use it in and then call it appropriately C++?

I would like to know how to pass a return function to another function as an argument so that I can use its value. Example: int childFunction(int a, int b) { int c; c = a + b; return c; ...
0
votes
1answer
15 views

Basic Syntax for passing a Scanner object as a Parameter in a Function

Here is what I wrote which is pretty basic : import java.util.Scanner; public class Projet { /** * @param args * @param Scanner */ public static void main(String[] args) { ...
1
vote
6answers
48 views

(Python 2.7) Use a list as an argument in a function?

So I'm trying to learn Python using codecademy but I'm stuck. It's asking me to define a function that takes a list as an argument. This is the code I have: # Write your function below! def ...
2
votes
2answers
65 views

How to use argument of a function as name of variable?

I have the feeling that this is trivial, and I apologize for asking such easy questions, but I would appreciate some help with the following problem: I have a function which requires two arguments: ...
0
votes
4answers
45 views

Manipulating tables in Oracle

Creating and using pl/sql proceedures which do not interact with data stored in a database are simple to make and execute, but of obvious limited use. But I'm having some difficulty in manipulating ...
0
votes
2answers
40 views

How to take a value from one jQuery function and assign it to a parameter of another function?

I have a function with a jQuery slider. It sets up a delay time and shows it in the "#slider" div : $(function () { $("#slider").slider({ range: 'max', min: 1, max: 5, ...
1
vote
2answers
32 views

JavaScript function arguments statements

My problem is: (only as example, must not make sense overall): // make a function and pass part of the statement as argument function ExampleFunction( argument ) { ...
0
votes
2answers
27 views

How can I pass input to a function, then have it use that input across 5 internal functions that are chaining each other?

This is essentially 2 questions I think. How do I make all internal functions use the same raw_input? How do I chain functions with that input? I've been trying to make something that will make a ...
1
vote
5answers
66 views

Why should or shouldn't we prefer a macro that accepts arguments over a function that does the same job?

Following are two programs that give the area of the circle when the radius is passed as argument.But in the first program, macro.c, I am using a macro for the job ,while in the second,function.c I am ...
-1
votes
0answers
39 views

passing char* argument to function in C

I have the following function: void func(unsigned char* src,unsigned char* dest){ //do something with dest, using src for(i=0;i<10;i++){ //print some dest values } } I call this ...
3
votes
1answer
87 views

How to pass two dimensional array to a function in F#?

I am trying to create a function in F# that takes as input a two dimensional array of integers (9 by 9), and prints its content afterwards. The following code shows what I have done : let printMatrix ...
1
vote
0answers
34 views

Change argument in jQuery function? [duplicate]

How can I pass an argument to a jQuery function, change it and then keep the change after function is executed? In the below example the argument is changed in the function but does not keep its value ...
1
vote
4answers
46 views

Force function argument to be a string

So, my code is like this: def func(s,x): return eval(s.replace('x',x) #Example: >> func('x**2 + 3*x',1) 4 The first argument of the function func must be a string because the function ...
0
votes
2answers
58 views

Built-in sorted() function in Python

I saw in a book how to pass a specific sorting function to Python's own built-in sorted() function as follows: def mysort(a, b): if a[3] < b[3]: return -1 elif a[3] > b[3]: ...
0
votes
3answers
35 views

How can I make my function execute even when no parameter is entered?

I'm teaching myself PHP through a book and to make this easier I made myself a function to save myself having to write echo "<br/>"; a million times. My function works fine but after ...
2
votes
5answers
77 views

Python: Passing variables between functions

I've spent the past few hours reading around in here and elsewhere, as well as experimenting, but I'm not really understanding what I am sure is a very basic concept: passing values (as variables) ...
1
vote
1answer
78 views

Why does this recursion code work?

def permutation(li,result=[]): print(li, result) # I added this print statement as a diagnostic. if li == [] or li == None: # As coded, I expected each recursive call to ...
0
votes
3answers
58 views

creating JS function with multiple arguments

I'd like to have a function which would return one or more variables connected to element, for example return color of specified border or borders (would use jQuery to it): ...
0
votes
2answers
34 views

What is the initial value of an argument in a function within a function?

Using the code below: function makeAddFunction(amount) { function add(number) { return number + amount; } return add; } var addTwo = makeAddFunction(2); var addFive = ...
3
votes
2answers
58 views

Functions as arguments to functions

I saw this example in a Python book, which showcases how to use a function as an argument to another function: def diff2(f, x, h=1E-6): r = (f(x-h) - 2*f(x) + f(x+h))/float(h*h) return r def ...
0
votes
6answers
96 views

Passing one subroutine to another subroutine

I have one function sub _where(\@ \&) which takes 2 arguments: the first is an array, and the second should be another function. This other function returns a boolean value, and I want to call it ...
0
votes
1answer
57 views

How can I call a function stored in an object that is being used as an argument for another function?

I'll be honest, I'm in way over my head with this one. Any help would be appreciated. OBJECTIVE I want to call a function called restart, but the function is inside an object and is being passed to ...
0
votes
2answers
95 views

Passing arguments to a python program from the command line, anything better than sys.argv? [duplicate]

I have a python script that I'd like to run from the terminal, and it takes about 10 numerical arguments. So far the only way i can think of passing the arguments to the program is as follows: python ...
1
vote
3answers
161 views

pass many arguments to a C function [duplicate]

How can I pass many arguments to a C function? Assuming that I have this function: void f(int n, char* a, char* b, ...) I want an undefined number of char* arguments. How can I do so?
0
votes
2answers
94 views

How to add arguments next to 'self' in a python function?

I'm trying to fix up a little program, but looks like I'm in a bit over my head. The whole code is too long to copy here, so I'm just gonna paste the problematic part. def kontroll(self): ...
0
votes
1answer
107 views

C++: subvector from a vector as an argument to a function

I use a function from another library which takes any STL sequential container as an argument. Just for arguments sake, I'll keep it as std::vector. do_something (std::vector<double>& k) { ...
1
vote
1answer
36 views

Function with object as argument, as argument of another function

I have troubles fixing a little problem I have. I have two classes. One is called MenuBar, in this class there is a vector array of the other object (MenuOption). MenuBar contains a method that create ...
0
votes
1answer
48 views

Linux Bash pass function argument to array name

I'm working on a script that has a number of functions in place which pull data from a few different arrays. We hope to keep the arrays individualized for reporting purposes. The information in the ...
1
vote
0answers
36 views

C2660: Function does not take X arguments & C2061 syntax error

main.cpp #include "g_inc.h" #include "Core/window.h" #include "Core/keyboard.h" #include "Core/mouse.h" #include "Core/event.h" int main(int argc, char *argv[]) { Window game_window; FPS ...
3
votes
2answers
54 views

Javascript/Node.js: How to define a local variable as part of arguments in a function call?

Often, I define and call a function like this - particularly when we use flags: function cat(doMeon, doCloseEyes) { if (doMeon) console.log("Meon..."); if (doCloseEyes) console.log("Hmm, I closed ...
-1
votes
1answer
47 views

Pass a function as an argument to another function in .vimrc

I have two functions in my .vimrc: function! DoStuff() ... endfunction function! DoStuffWrapper(func) ... func ... endfunction nnoremap <Leader> ... Basically that works. ...
0
votes
1answer
54 views

JavaScript function argument in apostrophe

Okay, I have a quick question. I have spent all night and day searching and trying methods of displaying function arguments inside of ' (apostrophes). Here is the code I'm trying to call. function ...
1
vote
2answers
81 views

flash get function's argument name

I want to get all arguments names of a function inside the function example: function fct(var1:string,var2:string){ var names:Array=... trace(names); } must trace : var1,var2 Thanks!
2
votes
2answers
100 views

C function argument char * vs char []

I think this question is an extension of this SO answer. Say I have the following code: #include <stdio.h> #include <string.h> void func(char *str) { strcpy(str, "Test"); } int ...
0
votes
1answer
58 views

Parameterized variable type in function (c++)

I am trying to write something along the following lines: void setData<T>(char * environmentVariable, T &data, T defaultValue) { bool ret = false; // Try to get the ...
2
votes
1answer
54 views

c++: - setting default initializer_list argument Y of size argument X, where X and Y are function parameters

Consider the following code enum class VAR_CHANGE{TYPE1, TYPE2, TYP3}; void cell ( const std::initializer_list<double>& values, const ...
0
votes
1answer
74 views

How do i can pass a number variable of parameter in a function in C [duplicate]

I'm creating a function is necessary pass at least 2 (two) parameters: myStruct and value, the other arguments are optional. This is a sample of my function: int find(struct myStruct *, void * ...
2
votes
3answers
92 views

C++ Function that passes any function with any number of arguments

This may not be possible in c++, but I've search online and found nothing that seems to work. I don't know how this works, but if I pass a function "A" to another function "B", I can execute function ...
1
vote
3answers
118 views

Confused about R terminology: Attributes, parameters, and arguments

Once and for all I want to get the R terminology right. However, none of the books I was reading was of big help, and it seems to me the authors choose the names sometimes arbitrarily. So, my question ...
-1
votes
2answers
436 views

SyntaxError: missing '}' after argument list

I have the following code, and I've been trying to find out what the error is, and I just gave up now. Can anyone please help? (function(d, debug){ var js, id = 'facebook-jssdk', ref = ...
0
votes
3answers
86 views

Apply php function to all function arguments

What is good way to apply a php function, such as trim(), to all arguments passed to a function while keeping them cogent for further processing? Say we wanted to trim all arguments passed to a mail ...
2
votes
2answers
75 views

R: is there a way to capture all the function argument values

I wrote a function that makes plots. One of the problems I encounter is the need to produce reproducible graphs. One solution is, of course, save the code for each plot I produce (i.e., save the exact ...
0
votes
3answers
79 views

struct of structs as argument

I have quite a big structure which has inside of it other structures, then I want to pass this structure of structures as an argument of a funtion. Anyone knows how to do it or may give me an example ...
0
votes
2answers
48 views

Using a function argument inside a function in Objective-C

I am new to Objective-C development and I have already run into the first problem. I am trying to write a function that takes a string as argument and compares that string with other strings. The ...
0
votes
2answers
83 views

C generic type as function argument input

So I have two different structs in which all the properties that I will be accessing will be the same. and I also have a function, who's argument, i want to be able to accept either of the two. ...
8
votes
3answers
282 views

How to pass a random function as an argument?

Python is so flexible, that I can use functions as elements of lists or arguments of other functions. For example: x = [sin, cos] y = s[0](3.14) # It returns sin(3.14) or def func(f1, f2): ...
1
vote
2answers
69 views

if statements and function arguments

I have a function I have to fill out, and the only way I can see doing it is a mess. The function I have is: public function($keys = array(), $pages = array()){} Essentially the goal is: If keys ...
2
votes
1answer
39 views

How to deal with ellipses (…) when using formals() to change the default arguments of an R function written by someone else

When there is an R function such that my usage consistently differs from the defaults, to keep my code concise and easier to maintain, I like to do something like the following at the beginning of my ...
-1
votes
1answer
67 views

Why am I getting an undeclared error for a function argument? (C)

So I found this library called libsha1, and I wrote a simple program to test it. When I go to compile it with gcc -lsha1 -o sha1sum sha1sum.c, however, it gives me the following error: sha1sum.c: In ...
1
vote
1answer
111 views

Python: Passing parameters by name along with kwargs

In python we can do this: def myFun1(one = '1', two = '2'): ... Then we can call the function and pass the arguments by their name: myFun1(two = 'two', one = 'one') Also we can do this: def ...

1 2 3 4 5 10