Top "Function" questions

A function (also called a procedure, method, subroutine, or routine) is a portion of code intended to carry out a single, specific task.

What is the equivalent of "!=" in Excel VBA?

The problem is that != does not work as a function in excel vba. I want to be able to use …

excel vba function syntax inequality
How do I search an SQL Server database for a string?

I know it's possible, but I don't know how. I need to search an SQL Server database for all mentions …

sql-server function search stored-procedures
Difference between a virtual function and a pure virtual function

What is the difference between a pure virtual function and a virtual function? I know "Pure Virtual Function is a …

c++ function pure-virtual
Submit form on pressing Enter with AngularJS

In this particular case, what options do I have to make these inputs call a function when I press Enter? // …

function angularjs call keypress enter
Calling a user defined function in jQuery

I am trying to call a user defined function in jQuery: I tried the following as well: $(document).ready(function() { $(…

jquery function function-calls user-defined
Calling a function within a Class method?

I have been trying to figure out how to go about doing this but I am not quite sure how. …

php function class methods call
C error: undefined reference to function, but it IS defined

Just a simple program, but I keep getting this compiler error. I'm using MinGW for the compiler. Here's the header …

c function linker-errors undefined-reference
JavaScript variable number of arguments to function

Is there a way to allow "unlimited" vars for a function in JavaScript? Example: load(var1, var2, var3, var4, var5, …

javascript function arguments argument-passing
What is the best way to exit a function (which has no return value) in python before the function ends (e.g. a check fails)?

Let's assume an iteration in which we call a function without a return value. The way I think my program …

python function return
How to pass all arguments passed to my bash script to a function of mine?

Let's say I have defined a function abc() that will handle the logic related to analyzing the arguments passed to …

bash function parameter-passing