About 564,000 results
Open links in new tab
  1. Functions in Programming - GeeksforGeeks

    Jul 23, 2025 · Functions in programming are modular units of code designed to perform specific tasks. They encapsulate a set of instructions, allowing for code reuse and organization.

  2. What is a Function? - W3Schools

    A function holds a piece of code that does a specific task. A function takes some data as input, the code inside the function does something with the data, and then the result is returned.

  3. Function (computer programming) - Wikipedia

    In computer programming, a function (also procedure, method, subroutine, routine, or subprogram) is a callable unit[1] of software logic that has a well-formed interface and …

  4. What is a function in coding? - California Learning Resource …

    Jul 2, 2025 · In the realm of software development, a function represents a self-contained, reusable block of code designed to perform a specific operation.

  5. What Are Functions - Complete Guide - GameDev Academy

    Nov 16, 2023 · Functions serve many purposes: they can be used to perform calculations, handle user input, manage game states, or even control the behavior of characters in a program. By …

  6. How to Organize Your Code with Functions - freeCodeCamp.org

    Jan 19, 2023 · Functions add structure to our programs, and make them easier to read and modify over time. Here is a tip: Code is often read much more often than it's written, so make …

  7. Function: Definition, Syntax, and Examples - mimo.org

    Function: Definition, Syntax, and Examples A function is a reusable block of code that performs a specific task. It allows you to group related operations together, give them a name, and reuse …

  8. Programming - Functions - University of Utah

    Functions are "self contained" modules of code that accomplish a specific task. Functions usually "take in" data, process it, and "return" a result. Once a function is written, it can be used over …

  9. Computer Programming - Functions - Online Tutorials Library

    Different programming languages name them differently, for example, functions, methods, sub-routines, procedures, etc. If you come across any such terminology, then just imagine about …

  10. Understanding Functions in Programming - Learn Coding USA

    Oct 6, 2023 · Functions are a fundamental concept in programming that allow us to organize and reuse code efficiently. In general, a function consists of a set of instructions that perform a …