+ 2
what does string and cmath mean in c++?
3 ответов
+ 5
#include <ctime>
#indclude <string>
they are the header Files.Header Files in C++ Header files contain definitions of Functions and Variables, which is imported or used into any C++ program by using the pre-processor #include statement. Header file have an extension ".h" which contains C++ function declaration and macro definition.
+ 3
its a header file used for some predefined function.....u could also create some function and have header file like that.....
+ 2
tnx