Answers for "can i onl use header files c++"

C++
0

what is a header in c++

// my_class.cpp
#include "my_class.h" // header in local directory
#include <iostream> // header in standard library

using namespace N;
using namespace std;

void my_class::do_something()
{
    cout << "Doing something!" << endl;
}
Posted by: Guest on May-17-2020

Browse Popular Code Answers by Language