Commonly used library functions in C language - table

1. Mathematical functions

When calling a math function, it is required to include the following command line in the source file:
#include <math.h>
insert image description here

2. Character functions

When calling a character function, it is required to include the following command line in the source file:
#include <ctype.h>

insert image description here

3. String functions

When calling a character function, it is required to include the following command line in the source file:
#include <string.h>
insert image description here

4. Input and output functions

When calling a character function, it is required to include the following command line in the source file:
#include <stdio.h>
insert image description here

Five, dynamic allocation function and random function

When calling a character function, it is required to include the following command line in the source file:
#include <stdlib.h>
insert image description here

insert image description here

Guess you like

Origin blog.csdn.net/m0_51233386/article/details/131614674