×

Built-in functions in C

The function is a set of instructions and statements enclosed in the "{}" delimiter. In c, there are two types of functions.

  1. Pre-define functions/ Built-in functions
  2. User define function.

Built-in functions in C:-

These functions already exist in the libraries and we need not  declare and define these functions. We can directly call these functions by including the header files in which these functions are present. For example, by using stdio.h header file, we can perform scanf(), printf() functions, scanf() is used to take input from the user and printf() is used to print the output on the console screen.

List of header files present in C:-

S. NoHeader fileDescriptionFunctions and macro
 1stdio. hIn this header file we have standard input and output functions.printf (), scanf (), getc (), putc (), fopen (), fclose (), remove (), fflush ().
 2conio. hThis header file consist of console input and out put functions.clrscr (), getch (), getche (), textcolour (), textbackground ().
 3string. hThis header file consist of string handling functions.strlen (), strrev (), strcat (), strcmp (), strchr (), strcpy (), strupr (), strlwr (), strset (), etc.
 4stdlib. hMemory allocation functions are present in stdlib. h header file.malloc(), calloc(), realloc(), atof(), atoi(), rand(),etc.
 5math. hAll function related to maths are present in this header file.pow (), sqrt (), sin (), tan (), log (), tanh (), sinh (), floor (), round (), ceil (), etc.
 6ctype. hThe functions related to character handling present in this header file.isalpha (), isdigit (), isalnum (), isspace (), islower (), isupper (), isxdigit (), isprint (), isgraph (), tolower (), isupper(), etc.
 7signal. hThe functions related to signal handling are present in this header file.raise, signal.
 8stdarg. hThe functions related to yhr variable argument are present in this header file.va_arg, va_end, va_start.
 9setjmp. hJump functions are present in this header file.longjump (), setjmp ().
 10errno. hException handling functions are present in this header file.Macro: errno, Edom etc.
 11local. hLocal functions are defined in this header file.setlocale(), localleconv ().
 12assert. hDiagnostics functions are defined in this header file.assert().
 13Time.hTime related functions are defined in this header file.setdate (), getdate (), clock (), time (), difftime (), strftime (), mktime (), ctime (), asctime (), etc.

Example :

#include< stdio. h >
#define max 100 // macro
int main ()
{
	Int a[ max ],  i, n;
	printf (“ Enter the size of the array”, &n); // reading the array size less then or                          //equal to 100
	scanf (“%d”, &n);
printf (“ \nEnter the array elements are:”);
	for( i=0;i <n; i++) // scanning array elements
	{
		scanf (“%d”,&a[i]);
	}
printf (“ \nThe array elements are:”); // printing the array elements
for( i=0;i <n; i++) // printing array elements
	{
		printf(“%d”,a[i]);
	}

Output:

Enter the value of n: 5
Enter the array elements: 1 2 3 4 5 
The array elements are: 1 2 3 4 5

Example 2:

//Program to print sum of array elements using stdio.h library functions.
#include<stdio.h>
#define max 100 //maximum size of the array is 100
int main ()
{
int a[ max ],  i, n, sum= 0;
	printf (“ Enter the size of the array”, &n);
	scanf (“%d”, &n); //reading the array size less then or equal to 100
printf (“ \nEnter the array elements are:”);
	for( i=0;i <n; i++) // scanning array elements
	{
		scanf (“%d”,&a[i]);
	}
	for( i=0;i <n; i++) // scanning array elements
	{
		sum =sum + a[i];
	}
	printf (“ The sum of the array elements is = %d”, sum); // printing the sum
	return 0;
}	

Output:

Enter the value of n: 5
Enter the array elements: 1 2 3 4 5 
The sum od the array elements is = 15

Example 3:

//Program to print given character using conio.h library functions.
#include <stdio.h>
#include <conio.h>
int main ()
{
	char c;
	printf (“ Enter any character: ”);
	c = getche(); // reading the character
	printf( “The Entered character is = %s ”, c);  //  printing the character
	return 0;
}

Output:

Enter any character: JavaTpoint
The Entered character is =  JavaTpoint

Example 4:

//Program to print the given array using stdlib.h library functions.
#include <stdio.h>
#include<stdlib.h>
int main() {
    int n, *array,i;
    printf(" Enter the size of the array: ");
    scanf("%d",&n); // fixing the size of the array
    array= (int*)malloc(n* sizeof(int)); // Dynamic memory allocation 
    printf(" \nEnter the array elements: ");
    for(i=0; i<n; i++) // reading the array elements
    {
        scanf("%d",&array[i]);
    }
    printf("The array elements are:\n");
    for(i=0; i<n; i++) // printing the array elements
    {
        printf("a[%d] = %d\n", i, array[i]);
    }
    return 0;
} 

Output:

Enter the size of the array: 6
Enter the array elements: 1 2 3 4 5 6
The array elements are:
a[0] = 1
a[1] = 2
a[2] = 3
a[3] = 4
a[4] = 5
a[5] = 6

Example 5:

/* program to find the square root and square of the given number using math.h library functions. *\
#include <stdio.h>
#include<math.h>
int main() {
    double n, r;
    int s;
    printf(" Enter the value of n: ");
    scanf("%lf", &n);
    r= sqrt(n); //calling sqrt function 
    printf("\n The square root of the given number is = %0.2lF", r); // printing square root
    s= n*n; // calculating square 
    printf("\nThe square root of the given number is = %d", s); // printing square value of n
    return 0;
}

Output:

Enter the value of n: 5
The square root of  the given number is = 2.24
The square root of the given number is = 25

Example 6:

// program to print the length and reverse string using string.h library functions
#include <stdio.h>
#include<string.h>
int main() {
    char s[100], b[100]; // declaring the size of the strings
    int a;
    printf(" Enter the string: ");
    scanf("%s", s); // reading the string
    a = strlen(s); // calculating the string
    b= strrev(s); //reversing the string
    // printing the length of the string
    printf(" \n The length of the given string is %d", a); 
    // printing the reverse string
    printf(" \n The string reverse is: %s", b);
    return 0;
}

Output:

Enter the string: JavaTpoint
The length of the given string is 10
The string reverse is: tniopTavaJ

Example 7:

// program todisplay the current time with date and day
#include <stdio.h>
#include <time.h>
int main()
{
	struct tm* a;
	time_t b;
	b = time(NULL);
	a = localtime(&b);
	printf("%s", asctime(a));
	return 0;
}

Output :

Thu Jun 30 12:41:26 2022

User define function:-

The user in the Program. To reduce the complexity of the code, the user defines this function.

In c, there are four function prototypes

  1. With parameters and with return values.
    Ex: int add (int a, int b);
  2. With parameters and without return values.
    Ex: void add (int a, int b);
  3. Without parameters and with return values.
    Ex: int add ( void);
  4. Without parameters and without return values.
    Ex: void add (void);

 In c to implement functions, we have to follow these steps.

Step 1:- Function declaration.

Syntax to declare a function: return_datatype function_name( parameters);

The function should be declared globally. If we are not returning any value to the main function, take the return data type as void. If there is no requirement to pass any parameter to the function, keep the parameter section empty or void.

Step 2:- Function definition or function body.

This is the main part of the function. Here the actual code is written which is to be executed.       

The syntax of function is:

Return_datatype function_name( parameters )
	{
		Statement 1;
		Statement 2;
		,,,
		Statement n;
}

Step 3:- Function calling

We can call a function in two ways.

  1. Call by value.
  2. Call by reference.

We can call function from anywhere in the Program. While calling we should give the proper function name and proper parameters as declared in the function declaration.

Syntax: function name (parameters);

Example:-

#include<stdio.h>
int large(int a, int b); // function declaration
int  main( )
{
	int c, d;
	printf(“ Enter the values of c, d”);
	scanf(“%d %d”, &c,&d);
	result= large(c, d); // function calling.
	printf(“the largest number among %d and %d is=”, c, d, result);
return 0;
}
int large(int a, int b) // function body 
{
	If(a>b)
		return a;
	else 
            return b;
}

Output:-

Enter the values of c, d: 2, 3
The largest among 2 and 3 is= 3

Example program in different prototype styles

// program to find the sum of the array elements using user define function 
#include<stdio.h>
#define max 100
// function declaration in with parameters and with return values function prototype  style
int sum ( int a[max], int m);
// function declaration in with parameters and without return values function prototype  style
void read (int n);
int b[max];
int main ()
{
    int n,s=0;
    printf(" Enter the size of the array: ");
    scanf("%d", &n); // fixing the size of the array
    read(n); // function calling
    s = sum (b,n);// function calling
    printf("\n The sum of the array elements is= %d",s);
    return 0;
}
void read (int n) // function body
{
    int i;
    printf(" \nEnter the read array elements: ");
    for( i=0; i<n; i++)
    {
        scanf(" %d", &b[i]);
    }
}
int sum (int a[max], int m) // function body
{
    int i, sum=0;
    for( i=0; i<m; i++)
    {
        sum = sum+ b[i];
    }
    return sum;
}

Output:

Enter the size of the array: 5
Enter the read array elements: 12 3 4 5 6
The sum of the array elements is= 30

Example program

// program to find sum of individual digits and printing the reverse numbers using  //user define function prototype style.
#include <stdio.h>
// function declaration in without parameters and without return values function prototype style
void sum(void);
// function declaration in without parameters and with return values function prototype  style
int rev(void);
int n;
void sum (void) // function body
{
    int s=0,r;
    int m=n;
    while(m>0)
    {
        r= m%10;
        s= s+r;
        m=m/10;
    }
    printf(" \nThe sum of individual digits of %d is= %d",n, s);
}
int rev(void) // function body
{
    int r=0,re=0;
    int m=n;
    while(m>0)
    {
        r=m%10;
        re=re*10+r;
        m=m/10;
    }
    return re;
}
int main() {
    int a;
    printf("\n Enter the value of n: ");
    scanf("%d", &n); // reading the n value 
    a=rev(); // function calling
    sum(); // function calling
    printf(" \nThe reverse of the given number is= %d", a);
    return 0;
}

Output :

Enter the value of n: 155
The sum of individual digits of 155 is= 11 
The reverse of the given number is= 551

Advantages of function in C:

  1. We can avoid rewriting of same code/logic in the same Program by writing the repeating logic in a function and calling the function when there is a need for that logic in the Program.
  2. We can call the c function from anywhere and any number of times in the same Program.
  3. We can easily analyse the large c program by dividing it into multiple functions.
  4. We can reuse the same logic number of times in the same Program.
  5. By implementing functions, we can increase the readability of the Program.
  6. By implementing functions, we can reduce the chances of error in the Program.
  7. We can modify the code easily if there are errors in the code.
  8.  We can divide a large complex problem into small parts by implementing functions.

Disadvantages of functions in C:     

  1. Memory consumption is more compared to normal code.
  2. It takes a little bit more time to compare to the normal code.
  3. It returns only a single value at a time.
  4. The coder should have known about the functions,  their types and the declaration of a function.

Related Topics

Expressions in C

Expressions in C: In the C programming language, an expression defines a formula in which the operands are linked to each other by using operators to compute the value. The operand...

4 minutes read.

Fibonacci series program in C using Recursion

In this tutorial, we’ll explore how to utilise recursion to build the Fibonacci sequence in C language. What does the term "Fibonacci Series" mean? The following number in a Fibonacci number series is...

2 minutes read.

Sum of digits in C++

Sum of digits in C++ There are various ways to find the sum of the digits of a number in C++. We can use containers like arrays or other simple cases...

4 minutes read.

Volatile in C

Introduction A volatile keyword is a qualifier in C. Qualifiers are nothing but keywords which are used to modify the properties of a variable. Qualifiers are of two types: 1) Const The const type...

3 minutes read.

GCD program of two numbers in C

GCD stands for Greatest Common Divisor, which is also known as Highest Common Factor, which can be abbreviated as HCF. Mathematically it can be defined as any two positive integers...

3 minutes read.

Dos.h Header File in C Language

Dos.h is a header file in C. Interrupt handling, sound generation, date and time functions, and other tasks can be performed using the functions in this library. This is exclusive to...

4 minutes read.

Run Time Polymorphism in C

What is polymorphism? Polymorphism refers to the existence of various forms. Polymorphism can be simply defined as a message's capacity to be presented in multiple forms. An individual who can have...

4 minutes read.

Find a subarray with a given sum.

Find a subarray with a given sum. The simple solution is to recognize all subarrays one by one and to check each subarray's sum. The quick solution follows the following program. Algorithm: From...

4 minutes read.

Difference between C and Java

C programming and Java programming are two of the earliest programming languages. C programming follows a procedural approach whereas Java programming follows an object-oriented approach. Java programming is a part...

3 minutes read.

C Program to find the Roots of a Quadratic Equation

What is Quadratic Equation: Equations of degree 2 in polynomial form are called quadratic equations. A, B, and C are the coefficient variables in the equation, which is written as ax2...

3 minutes read.

Snake Game in C

Snake game in C is basic desktop console program which was created in 1970’s. It is an old classic game which was played by every child across the world. This...

4 minutes read.

Actual and Formal Parameters

Any variable declared within the parenthesis is referred to as the parameters during the function declaration. Parameters tell the function about the argument datatype, their order, and the number of...

5 minutes read.

Storage Class in C

C storage class is used to define the scope variables and function. There are four various types of storage classes that are given below. auto: The auto keyword is the default...

1 minute read.

Do WHILE LOOP in C Programming Examples

Before understanding the programming examples of the Do-While loop, we have to know what is Do-While loop in C. So, let's start with the definition of the Do-While loop. What is...

5 minutes read.

Big O Notation in C

Big O Notation in C: In the C programming language, we have so many algorithms and solutions to the problems that exist, which have different aspects and purposes to an...

3 minutes read.

Decimal to Binary in C

What is a decimal number? A decimal number is a number represented in the decimal number system. This system of binary conversion uses base 10 to represent numbers, i.e. the digits...

3 minutes read.

How to create a binary file in C?

Creating a binary file in C language is very simple, requiring only some specific functions to be implemented. There are also other binary modes: read, and write, which will be...

7 minutes read.

Stdio.h in C

Header files are used to make the programmer’s efforts a lot easier. In order to make the programming simple, there are a number of libraries which are included as predefined...

4 minutes read.

fflush in C

In this article, we will understand what is fflush(), the need for fflush and fflush(stdin), and fflush(stdout). The fflush() function is used to clear the output buffer and move the buffered...

3 minutes read.

How to find square root in C Language

Before understanding the square root program in C language, one must know about the square root of a number. A square root is a mathematical term. The square root of a...

5 minutes read.