0
¿Para que sirve el #include en C++?
3 odpowiedzi
+ 2
#include is a way of including a standard or user-defined file in the program and is mostly written at the beginning of any C/C++ program. This directive is read by the preprocessor and orders it to insert the content of a user-defined or system header file into the following program.
+ 1
Gracias