I want the following code to appear every time I create a new blank C++ file:
#include<bits/stdc++.h>
int main(){
/* code here */
return 0;
}
I know I can create a new user snippet but is there a way to automatically insert it on a new black C++ file without having to type anything?
(This can be also analogously extended to Java, C, and other languages)