Answer the question
In order to leave comments, you need to log in
Header file is not connected to the project?
#include "Header.h"
int main()
{
Second();
}
#pragma once
int Second()
{
return 0;
}
Answer the question
In order to leave comments, you need to log in
In "Header.h" or just
int Second();
and the body is in a separate cpp, or, for short functions,
inline int Second()
{
return 0;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question