xxxxxxxxxx
#ifndef LIST_H // LIST_H is a random name, you can use anything
#define LIST_H
// enter your code here
#endif // LIST_H
xxxxxxxxxx
#include<iostream>
using namespace std;
int main()
{
// Code here
return 0;
}
c++ boiler plate
xxxxxxxxxx
// using the below preprocessor directive allows you to use functionalities
// from different directives without the need of including them
#include<bits/stdc++.h>
using namespace std;
int main()
{
// Code here
cout << "How you doin'";
return 0;
}