About 1,250,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 …

  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. Functions in C - Online Tutorials Library

    The C standard library provides numerous built-in functions that your program can call. For example, strcat () to concatenate two strings, memcpy () to copy one memory location to …

  4. Functions - cppreference.com

    Jan 7, 2025 · A function is a C language construct that associates a compound statement (the function body) with an identifier (the function name). Every C program begins execution from …

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

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

    May 17, 2025 · Learn about C functions: their purpose, benefits, and the two main types - library and user-defined - with clear code examples.

  7. Functions (C) | Microsoft Learn

    Aug 2, 2021 · This section describes how to declare, define, and call C functions. Other topics discussed are: C Language Reference.

  8. C syntax - Wikipedia

    C was the first widely successful high-level language for portable operating-system development. C syntax makes use of the maximal munch principle. As a free-form language, C code can be …

  9. Functions in C - Cprogramming.com

    In general, functions are blocks of code that perform a number of pre-defined commands to accomplish something productive. You can either use the built-in library functions or you can …

  10. Functions (GNU C Language Manual)

    We have already presented many examples of functions, so if you’ve read this far, you basically understand the concept of a function. It is vital, nonetheless, to have a chapter in the manual …