About 19,200,000 results
Open links in new tab
  1. Functions in C - GeeksforGeeks

    Oct 18, 2025 · In C programming, functions can be grouped into two main categories: library functions and user-defined functions. Based on how they handle input and output, user-defined functions can …

  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 are important for …

  3. Functions in C - Online Tutorials Library

    A function declaration tells the compiler about a function's name, return type, and parameters. A function definition provides the actual body of the function. The C standard library provides numerous built-in …

  4. 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.

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

    Apr 6, 2023 · Functions are an essential component of the C programming language. They help you divide bigger problems into smaller, more manageable chunks of code, making it simpler to create …

  6. C Functions: Types & Examples Explained - Simplilearn

    May 5, 2025 · Learn about functions in C, their types, and how they work. Explore examples and understand the importance of functions in C programming.

  7. C Programming Functions with Examples - w3resource

    Sep 14, 2024 · Learn about function declarations, definitions, recursion, error handling, and function pointers in C programming with code examples and edge case scenarios.

  8. Functions in C - Sanfoundry

    Learn about functions in C, including library and user-defined functions, syntax, examples, scope, function pointers, and inline functions.

  9. Functions in C | Definition, Types & Real Code Examples - upGrad

    Learn what functions in C are and how to use them. Understand types of functions, syntax, and examples for modular, reusable, and clean C programs

  10. C Programming Functions Exercises - PYnative

    2 days ago · Master C Functions with 25 exercises covering basic syntax, Pass by Value/Reference, static variables, recursion, function pointers, and macros, Variadic Arguments, and complex scope.