I mean we always get this code:
// ConsoleApplication1.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
int main()
{
return 0;
}
Is there any way to change this to another code? So when I start a new project I always want to get something like this:
#include "stdafx.h"
#include <iostream>
using namespace std;
int main()
{
return 0;
}
I know it is not a big difference but I really don't want to edit always, it is boring sometimes