In a visual studio project it often happens to create several files and write a bunch of lines to include the necessary libraries / headers. I was wondering if it was possible to automate the process with a custom shortcut; for example, in my case, I would like to insert the following lines:
#define _CRT_SECURE_NO_WARNINGS
#include <stdlib.h>
#include <stdio.h>
#include <stdbool.h>
#include <string.h>
for example pressing CTRL+MAIUSC+M. Is that possible?