A function (also called a procedure, method, subroutine, or routine) is a portion of code intended to carry out a single, specific task.
6
votes
5answers
92 views
In C how is this parameter declared in the function?
I am trying to learn the basics of C using 'The C Programming Language - Brian Kernighan and Dennis Ritchie'
In the program below, I don't understand where the value for 'maxlineLength' comes from?
...
4
votes
9answers
135 views
Javascript functions?
The code goes like this (The syntax may seem odd but as far as I know, there is nothing wrong with it. Or is there?)
var add=function addNums(a, b) {
return a+b;
} ...
2
votes
3answers
52 views
Javascript functions: var func = someFunction() and var func = someFunction?
var funcHi = function() {
var a=6;
var b=5;
return a+b;
};
var withBrace = funcHi();
var withoutBrace = funcHi;
console.log("With braces: "+withBrace) //'Reference 1'
...
-4
votes
1answer
33 views
Stored function to search files in SQL Server [closed]
Here is my case, i have a PRODUCTS table
create table PRODUCTS
(
ID_PRODUCTS CHAR(10) primary key not null,
NAME CHAR(30),
PRICE INTEGER
)
Then I fill ...
0
votes
2answers
30 views
Javascript onload two functions not returning the data
I am trying to display two javascript function when page load. But seems one is overwriting another one.
here is javascript code:
function welcome(){
if (window.XMLHttpRequest)
{// code ...
0
votes
1answer
22 views
How do I allow users to enlarge or decrease the size of a html table?
Well Im working on a little sound board project and I added a thing to create the website more
dynamic
When you click increase/decrease it increases/descreases the text size in the buttons.
...
0
votes
0answers
28 views
Why is my simple if isset function not working with PDO Object?
Okay I had this on my index.php page:
<!-- check if website is present -->
<?
if (isset($business->website))
{
echo '<a href="http://' . $business->website . '" ...
1
vote
1answer
55 views
Upload a picture with a php function [closed]
It's the first time I'm trying to create a function and I can't figure it out...
I'm trying to build a function who will upload a picture and return her path, but the echo doesn't display anything ...
1
vote
4answers
58 views
Javascript vs jQuery Function Difference?
I've been making a program and I want to know the difference between starting two functions like so:
$(function () {
//content
});
and
function Name () {
//content
}
Also, why can't I ...
0
votes
3answers
113 views
Cannot pass a variable of my own (non-standard) type to a function
I'm writing a program that must normalize audio *.wav file.
There is a task "to display header's data": ChunkId, ChunkSize and so on.
I want to make a function named display_hdr (In order to have ...
0
votes
2answers
56 views
Why is my JavaScript code not calling my function?
I am fairly new to JavaScript and made a VERY basic choose your own adventure game with a switch statement. When I attempt to call my function using a button it is unsuccessful. My JavaScript alone is ...
0
votes
1answer
40 views
Replace JavaScript's function keyword
Is it possible to replace the function keyword to something smaller as void, sub etc?
I've seen it being used in libraries like these two:
http://sweetjs.org/
http://processingjs.org/
0
votes
2answers
61 views
Why does my original list change?
I a wrote a function SwapCities that is able to swap entries 3 and 4 in a list.
So f.e. [0,1,2,3,4] should become [0,1,2,4,3]. This function works perfectly, but strangely my original list also ...
-3
votes
1answer
68 views
Passing a double pointer to a function as reference - c
I'm having hard times trying to pass the reference of double pointer to a function.
I have this:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAX_ROWS 2
...
1
vote
3answers
61 views
How do I use user input to invoke a function in Python? [duplicate]
I have several functions such as:
def func1():
print 'func1'
def func2():
print 'func2'
def func3():
print 'func3'
Then I ask the user to input what function they want to run using ...
0
votes
2answers
12 views
wp_get_attachment_image does not return medium sized images
I read through the codex for these 2 functions:
wp_get_attachment_image
http://codex.wordpress.org/Function_Reference/wp_get_attachment_image
wp_get_attachment_image_src
...
2
votes
5answers
54 views
Creating a new txt file with a PHP function
I am trying to write a function that takes two parameters (the filename and a sting to put inside) that creates a new file, containing the string.
<?php
function writeFile($name, $string) {
...
0
votes
1answer
30 views
How to disable button from being clicked before a function has finished in javascript
Okay, so I have a button without any Id but when it is clicked it starts a function called buttonClick. This function basically controls a slot machine(poke machine) it's images, winnings etc. Note, ...
1
vote
2answers
21 views
Trouble with Jquery for each and $(this), I can't reference one element
I am currently having trouble jquery I'm trying to trigger an event where when the user clicks on the header of an article, the hidden paragraph snippet is displayed under it fades in, my problem is ...
3
votes
2answers
84 views
Wrapping an accessor method for a global object in some other function
I do a lot of stuff specifically with PHP and WordPress, and I've come across this concept quite often throughout the WordPress application; although, this question isn't specific to WordPress. I'll ...
2
votes
1answer
34 views
php functions playing games
I'm curious as to why variables aren't echoing using a function... (If that makes sense lol..)
function name(){
echo "$info->fullname";
}
When i then use
<?php name(); ?>
anywhere on ...
-5
votes
7answers
71 views
In C, calling a function from main [closed]
In C, I tried to call a function printSum from main. But the main function isn't calling printSum, its just printing out "Hi!" which is a print statement from main. I am not sure why printSum is not ...
-8
votes
3answers
245 views
Why Haskell's `fst` and `snd` have such a short (strange) names? [closed]
I'm new to Haskell and what really bothers me at the moment is why the people who made the libraries added functions called fst and snd instead of using (normal) names like first and second. What's ...
0
votes
1answer
34 views
Calling jQuery function on page load with multiple elements
I'm working with Volusion and am trying to call a jQuery function on page load. I'm a little new to jQuery so please bear with me. Basically there are '.productnamecolor.colors_productname' items that ...
0
votes
1answer
47 views
Filter not working in Qt C++
I'm trying to filter the elements of a list by quantity using Qt. It's just that I press the filter button and nothing happens. Maybe i'm doing something wrong in the SLOT function. The filter ...
4
votes
2answers
60 views
Lua functions — a simple misunderstanding
I'm trying to develop a function which performs math on two values which have the same key:
property = {a=120, b=50, c=85}
operator = {has = {a, b}, coefficient = {a = 0.45}}
function Result(x) ...
0
votes
2answers
33 views
Using tapply in a function/loop that will replace variable name for the length of the columns of the dataframe
In R, I have a dataset (which I call star) of records with about 50 appended demographics (each demographic can be called var1, var2, var3, etc). I have split the dataset in ~10% groups by using the ...
3
votes
1answer
70 views
call a Lua function just by writing its name (without parentheses)
I'm looking forward to using a variable like "asdf" instead of writing the name function to check its return (which changes now and then). That's why "asdf" variable should update its value everytime ...
0
votes
1answer
37 views
Functioncall to javascript not working
i'm using php to generate some button that have their Id and the Id of the text they should show as parameters. But for some reason the function call doesn't seem to be working.
...
0
votes
1answer
23 views
VBA to C++ dll function call, how to have missing argoument
I have function that I compiled with C++ as dll. I access it via vba no problem everything works great.
I want to have one of the arguments to be set to a specific value if the user does not specify ...
1
vote
1answer
53 views
How to let two threads exchange data via a pointer?
I want an asynchronous thread to edit an object. Therefore I store a pointer to that object.
Data *pointer;
There is also a flag of type std::atomic<bool> to know if the secondary thread is ...
0
votes
1answer
45 views
How to create callback (add as dynamic argument, a function)?
I'm creating this method / function and I need to implement callback. I mean, I need to add as dynamic argument, a function.
I have read several articles but I can not understand how to get it.
Any ...
0
votes
1answer
29 views
Javascript fuction declaration conversion
I have a javascript function declared as
myFunction: function() {
// some codes...
}
and I want to convert the declaration format to
function myFunction() {
// some codes...
}
First of all ...
0
votes
1answer
89 views
How should I use closures in my javascript program? [closed]
This question is about the best way to declare functions in Javascript. the app is a small 2 player board game I'm working on as part of a bigger web page. Basically I have a socket which receives and ...
5
votes
5answers
103 views
Best practice for returning multiple values in Java?
Today I've added a extra security check behind my login forms, to slow down brute force attacks. I've got multiple login forms and made a nice easy to call function that does all the checking and then ...
0
votes
1answer
29 views
Scilab - calling another GUI within a GUI. Functions not working
I'm quite new to scilab, I have created two GUIs (see example below), with script 2 being called from script 1. However the function in script 2 don't seem to work. Can anyone help?
Script 1
...
0
votes
2answers
52 views
Return multiple values with function in R
Iam trying to calculate multiple values with my own function from a dataframe. The function currently returns only one value in a dataframe. It seems my for loop is not working correctly. I've also ...
-2
votes
3answers
41 views
retrieve data from db using function pdo
here is the code before implementing the function,
try {
$conn = new PDO('mysql:host=localhost;dbname=dbname', 'usr', 'pass');
$conn->setAttribute(PDO::ATTR_ERRMODE, ...
1
vote
2answers
54 views
what is the purpose of having function exec() in Hook.php in prestashop
In the Header.tpl file there is a hook {$HOOK_TOP} which contains all the header part including menu, search etc... You can check that in this URL
In the FrontController it shows... 'HOOK_TOP' => ...
1
vote
1answer
33 views
Having an issue with a binary search involving vectors (C++)
I'm attempting to find a value through a binary search, but i keep getting an error of error: no match for 'operator==' in '(& itemNumb)->std::vector<_Tp, _Alloc>::operator[], std::allocator > ...
0
votes
4answers
74 views
C++ function in different source files with global variable
I'm doing c++ with different function. I want to put the function in different source file.
To do I create a header file:
function.h
int X(int i, int k);
and the file with the function:
...
0
votes
6answers
63 views
if I define a function in the implementation (.cpp) file without defining it in the header file what happens?
I'm a C++ noob. I have a foo.cpp file which defines a function,
void sort() {
// details of sort algorithm
}
I have not defined this in the corresponding header file, but I get no compilation ...
0
votes
6answers
48 views
javascript function, how to take the variable within document.write?
I need to call a variable inside a document.write but it doesnt work...
example
function(){
var variable=document.getElementById("text");
alert("your text "+ variable);
}
inside a table ...
-1
votes
2answers
46 views
Call Arbitrary Constructor With Arbitrary Arguments [duplicate]
Given the name of the class as $class, and the arguments to pass to the constructor an an array $args, can I actually create a new instance of $class?
It's possible using else-if chains (up to the ...
0
votes
4answers
50 views
Reversed String Using Recursion Functions
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void rec(char pin[]);
main()
{
char pin[100];
printf("Give word: ");
scanf("%s", pin);
rec(pin);
...
0
votes
0answers
16 views
Does register_shutdown_function work for nested functions
Suppose I have something like this,
<?php
$test = new Test();
register_shutdown_function(array($test, 'shutdownHandler'));
$test->func1();
Class Test {
func1() {
...
0
votes
3answers
48 views
How to change 2 strings using a function, by changing their pointers' value
main()
char *s1="Second";
char *s2="First";
swap(s1,s2);
printf("%s\n",s1);
printf("%s\n",s2);
I have as an exercise, to swap those 2 strings above (so that the one that executes the program will ...
1
vote
4answers
45 views
put php function in seperate file and call from another
i have to connect to db many times, So i thought to put db connecting code in anothe file called functions.php as
<?php
function connect_db(){
$conn = new ...
0
votes
2answers
26 views
Matlab arrayfun mapping using two arrays?
How would I go about mapping the values of TWO arrays to a function and returning the result as an array?
arr = [1, 2, 3];
arr2 = [1, 4, 5];
val= arrayfun(@(x) func(arr, arr2))
function val = ...
0
votes
1answer
30 views
Inserting function argument as string within body of function
I am trying to write a function using aggregate() that will allow me to easily specify one or more variables to list by and their names.
data:
FCST_VAR OBS_SID FCST_INIT_HOUR ME
WIND ...






