| Cpp Boilerplate CodeThis extension provides the standard C++ boilerplate code for General usage. FeaturesType 'io' or 'al' in an C++ file and select the snippet from the auto suggestion dropdown to get the C++ boilerplate to get started quickly. Snippets
io #include<iostream>
using namespace std;
int main()
{
    return 0;
}
 
al #include<iostream>
#include<algorithm>
using namespace std;
int main()
{
    return 0;
}
 Installation
Install Visual Studio Code 1.57.0 or higherLaunch VS CodeLaunch the command palette by using Ctrl-Shift-P(Windows, Linux) orCmd-Shift-P(OSX)Type in Install Extension and select 'Extensions : Install Extensions'Type Cpp Boilerplate CodeChoose the extension from the drop downReload Visual Studio Code Release Notes1.0.0Initial release of Cpp Boilerplate Code. SourceGithub |  |