Created
April 18, 2016 23:47
-
-
Save jitendra-1217/3fbb7871bbb6357ad750491f4a8270a0 to your computer and use it in GitHub Desktop.
C++ file template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Jitendra Ojha | |
*/ | |
//Includes | |
#include <iostream> | |
#include <algorithm> | |
#include <deque> | |
#include <fstream> | |
#include <iterator> | |
#include <list> | |
#include <map> | |
#include <queue> | |
#include <set> | |
#include <stack> | |
#include <string> | |
#include <utility> | |
#include <vector> | |
//Defines | |
//Loops | |
#define fr(i, m, n) for (int i = (m); i < (n); i++) | |
//Input/output | |
#define outl(n) cout << (n) << endl | |
using namespace std; | |
int main() | |
{ | |
//Code starts.. | |
// | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment