Hi,
I'm using C::B 20.03 on a 64-bit Win 7 box.
Every time I create a new project and open the source .cpp, it's populated with the "Hello World" source code. I would like every project source code to start with basic code, such as:
#include <iostream>
using namespace std;
int main()
{
return 0;
}
How can I achieve that?
Thanks,
Vic