Is there any way to make VSCode add this code below to every new file i create? or only the ones with .cpp extension
#include <iostream>
#include <iomanip>
#include <math.h>
using namespace std;
int main() {
return 0;
}
this would make life easier as i wouldn't need to CTRL+C and V every time i create a new file