About 10,400,000 results
Open links in new tab
  1. How do I measure elapsed time in Python? - Stack Overflow

    The precision, and in fact the very definition of the meaning of “processor time”, depends on that of the C function of the same name. On Windows, this function returns wall-clock seconds elapsed since …

  2. Newest 'function' Questions - Stack Overflow

    I need a function app that will syncronize a key vault in west us 3 to a key vault in eastus. Im willing to pay. I'm deploying aks in westus3, east us will be our passive environment for aks, I know I ...

  3. How to return a result from a VBA function - Stack Overflow

    When called within VBA the function will return a range object, but when called from a worksheet it will return just the value, so set test = Range("A1") is exactly equivalent to test = Range("A1").Value, …

  4. syntax - How do I pass multiple parameters into a function in ...

    If I have a function which accepts more than one string parameter, the first parameter seems to get all the data assigned to it, and remaining parameters are passed in as empty. A quick test script:

  5. Formatting of a JavaScript function.function () - Stack Overflow

    I have a set of functions that manage CRUD operations on a database. I am trying to have a top level function that houses the add, update, delete, etc. functions to keep it clean and organized. I...

  6. How do I define a function with optional arguments?

    466 I have a Python function which takes several arguments. Some of these arguments could be omitted in some scenarios.

  7. How can I return two values from a function in Python?

    32 I would like to return two values from a function in two separate variables. What would you expect it to look like on the calling end? You can't write a = select_choice(); b = select_choice() because that …

  8. How do you call a function in a function? - Stack Overflow

    I have a function and I'm making another one in which I need to call the first function. I don't have experience in Python, but I know that in languages like MATLAB it's possible as long as they're...

  9. How can I solve the error LNK2019: unresolved external symbol

    I get this error, but I don't know how to fix it. I'm using Visual Studio 2013. I made the solution name MyProjectTest This is the structure of my test solution: -function.h #ifndef MY_FUNCTION_H #

  10. How can I call a function using a function pointer?

    Suppose I have these three functions: bool A(); bool B(); bool C(); How do I call one of these functions conditionally using a function pointer, and how do I declare the function pointer?