Home > Article > Backend Development > What header file is stdio.h?
Generally, in C language or C, the extension name of the file used to #include is .h, which is called header file. The purpose of the #include file is to put content common to multiple compilation units (that is, c or cpp files) into a separate file to reduce the overall code size; or to provide cross-project common code.
In the current c version, the application of this header file should be #includeade979de5fc0e1ca0540f360a64c230b
##stdio refers to "standard input & output" (standard input and output)
Reference method
#include <stdio.h>(Note: In TC2.0, it is allowed to directly call the functions in this header file without referencing it, but this approach is not standard . It is also not recommended to do this to avoid problems that cannot be compiled or executed in other IDEs.)
The above is the detailed content of What header file is stdio.h?. For more information, please follow other related articles on the PHP Chinese website!