Loading repository data…
Loading repository data…
thinakaranmanokaran / repository
🚀 C & C++ Boilerplate is a simple VS Code extension that auto-adds boilerplate code for new .c and .cpp files—saving time and keeping your workflow clean and consistent.
A lightweight Visual Studio Code extension that automatically inserts boilerplate code whenever you create a new C (.c) or C++ (.cpp) file.
Designed and developed by Thinakaran Manokaran.
When a new .c file is created, a predefined C boilerplate template is automatically inserted.
Example:
#include <stdio.h>
int main() {
// Your code here
return 0;
}
When a new .cpp file is created, a predefined C++ boilerplate template is added.
Example:
#include <iostream>
using namespace std;
int main() {
// Your code here
return 0;
}
Starting a new C or C++ file usually means writing the same starting code repeatedly. This extension saves you time by:
.c or .cpp file to see the boilerplate inserted automaticallyOr install manually:
code --install-extension c-cpp-boilerplate-1.0.0.vsix
{
"name": "c-cpp-boilerplate",
"displayName": "C & C++ Boilerplate",
"description": "Automatically inserts boilerplate code when creating new C or C++ files.",
"version": "1.0.0",
"publisher": "thinakaran",
"author": {
"name": "Thinakaran Manokaran",
"url": "https://thinakaran.dev"
}
}
Thinakaran Manokaran Website: https://thinakaran.dev Publisher: thinakaran (VS Code Marketplace)