#include is a precompiled keyword in C or C++ which is used to include header files into your program. These files allow programmers to separate certain elements of a program's source code into reusable files. Header files commonly contain forward declarations of classes, subroutines, variables, and other identifiers
cstdio is a C++ library to perform Input/Output operations
cstdio => C STDIO => C Standard Input Output functions
Input and Output operations can be performed in C++ using the C Standard Input and Output Library (cstdio, known as stdio.h in the C language).
Input operations such as reading from keyboard and/or reading from a file, and Output operations such as displaying on to a monitor and/or writing to a file.
This library uses what are called streams to operate with physical devices such as keyboards, printers, terminals or with any other type of files supported by the system. Streams are an abstraction to interact with these in an uniform way; All streams have similar properties independently of the individual characteristics of the physical media they are associated with.
Streams are handled in the cstdio library as pointers to FILE objects. A pointer to a FILE object uniquely identifies a stream, and is used as a parameter in the operations involving that stream.
There also exist three standard streams: stdin, stdout and stderr, which are automatically created and opened for all programs using the library.
Thanks, Hope it helps