About 81,400,000 results
Open links in new tab
  1. Functions in C - GeeksforGeeks

    Oct 18, 2025 · A function is a named block of code that performs a specific task. It allows you to write a piece of logic once and reuse it wherever needed in the program. This helps keep your …

  2. C Functions - W3Schools

    Functions A function is a block of code which only runs when it is called. You can pass data, known as parameters, into a function. Functions are used to perform certain actions, and they …

  3. How to Use Functions in C - Explained With Examples

    Apr 6, 2023 · We'll look at functions in C, their syntax, and how to use them successfully in this article. What is a Function in C? A function is a block of code that executes a particular task in …

  4. C Functions: Types & Examples Explained - Simplilearn

    May 5, 2025 · Functions in C are the basic building blocks of a C program. A function is a set of statements enclosed within curly brackets ( {}) that take inputs, do the computation, and …

  5. What is a Function in C Programming? - Intellipaat

    Oct 14, 2025 · A function in C is a chunk of code that performs a specified task. They are used to break down code into smaller, more manageable chunks that may then be called from other …

  6. C Functions - Programiz

    In this tutorial, you will be introduced to functions (both user-defined and standard library functions) in C programming. Also, you will learn why functions are used in programming.

  7. What Are C Functions And It's Types With Code Examples?

    May 17, 2025 · Numerous program statements are grouped together and given a name by functions. A function is a self-contained block of statements that can be executed and carry …

  8. Functions in C - Sanfoundry

    What is Function in C? A function in C is a block of code that performs a specific task and can be reused throughout the program. Functions help in modular programming, making code more …

  9. Functions in C Programming: Syntax, Types, and Best Practices

    In C programming, functions are an essential building block that help you write organized, modular, and reusable code. A function is a self-contained block of code designed to perform …

  10. FUNCTIONS IN C. A function is a set of instructions… | by

    Mar 5, 2024 · In C programming, a function is a block of code that performs a specific task and can be called from other parts of the program. It serves as the fundamental component of a C …