Answers for "what are the header files used in c++"

C++
0

what is a header in c++

// my_program.cpp
#include "my_class.h"

using namespace N;

int main()
{
    my_class mc;
    mc.do_something();
    return 0;
}
Posted by: Guest on May-17-2020

Code answers related to "what are the header files used in c++"

Browse Popular Code Answers by Language