What is Function in C

What is Function in C

In this tutorial, we will study what is function in c programming languages and the types of function (pre-defined functions and user-defined functions), and the syntax of the function. So let’s start.

What is Function in C?

In order to solve a problem of C language, it should solve all those parts of the weights in small parts and add all the parts at the end and these small types of different types related to a problem are called functions. By using Functions, saving both the programmer's time and the computer's memory. With the help of Function, we can use the same code again and again.

Types of Function

The function are two types

  • Pre-defined functions
  • User-defined functions

Pre-defined Functions

The functions that we already get to use directly For example: - prinf (); clrscr (); getch (); etc. All these functions are already received by us, to use them, you have to include this header file in your source program.

When using any predefined functions in your source program, this process is called the calling function. Pre-define functions are also called built-in functions.

User-defined Functions

The functions that the programmer develops on the basis of their need are called user define function if the program can do all the work without creating a user-defined function But creating the function reduces the comparability of the program. Creating functions makes it easy to debug the program. The programmer creates the user define function according to the way it is created.

Function Declaration

 <return-type> <function-name>(<list-of-parameters>); 

Function syntax

<return-type> <function-name>(<list-of-parameters>)
{
  statement 1; 
  statement 2;
  .
  .
  statement n;
} 

Function Call

<function-name>(<arguments-list>); 


Originally posted on alimammiya.hashnode.dev

要查看或添加评论,请登录

Alimam Miya的更多文章

  • Elevate Your CAT Preparation with iQuanta's CAT Online Course

    Elevate Your CAT Preparation with iQuanta's CAT Online Course

    Are you preparing for CAT 2025 and looking for the best online course to boost your chances of success? iQuanta’s CAT…

  • Best CAT Score Calculator 2024

    Best CAT Score Calculator 2024

    The Common Admission Test (CAT) is a crucial milestone for MBA aspirants aiming for prestigious institutes like IIMs…

  • Top 10 Pharma Companies in India 2024

    Top 10 Pharma Companies in India 2024

    In this will talk about the Top 10 Pharma Companies in India. India’s pharmaceutical assiduity has surfaced as a global…

  • Top 10 Credit Card Companies in India 2024

    Top 10 Credit Card Companies in India 2024

    This article will talk about the Top 10 Credit Card Companies in India. In the dynamic geography of India’s fiscal…

  • Top Real Estate Companies in India 2024

    Top Real Estate Companies in India 2024

    This article will talk about the Top Real Estate Companies in India 2024. The real estate region in India has witnessed…

    1 条评论
  • Top Real Estate Companies in Kolkata 2024

    Top Real Estate Companies in Kolkata 2024

    This article will talk about the Top Real Estate Companies in Kolkata. Kolkata, the artistic locus of India, is going…

  • Top Real Estate Companies in Delhi 2024

    Top Real Estate Companies in Delhi 2024

    This article will talk about the Top Real Estate Companies in Delhi. Delhi, the heart of India, not only serves as the…

    1 条评论
  • Hostinger Coupon Codes 2024 [60% Plan Discount]

    Hostinger Coupon Codes 2024 [60% Plan Discount]

    Looking for an affordable yet powerful hosting solution? Hostinger is one of the leading web hosting providers known…

  • 5 Best CAT Online Coaching in Gurugram

    5 Best CAT Online Coaching in Gurugram

    Preparing for the Common Admission Test (CAT) can be a daunting task, especially with the myriad of coaching options…

  • CAT Mock Tests Series - Boost Your CAT Preparation

    CAT Mock Tests Series - Boost Your CAT Preparation

    Preparing for the Common Admission Test (CAT) can be a daunting task, but with the right resources and strategy, it can…

社区洞察

其他会员也浏览了