Skip to content

Instantly share code, notes, and snippets.

@DET171
Created April 18, 2022 07:13
Show Gist options
  • Save DET171/0e0d282a28929e29723ec68b6211672b to your computer and use it in GitHub Desktop.
Save DET171/0e0d282a28929e29723ec68b6211672b to your computer and use it in GitHub Desktop.
My short collection of C++ macros
#define l long
#define d double
#define str string
#define ll l l
#define ull unsigned ll
#define endl "\n"
#define forx(y) for (ll x = 0; x < y; x++)
#define in(x) cin >> x;
#define outln(x) cout << x << endl;
#define out(x) cout << x << " ";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment