Created
April 18, 2022 07:13
-
-
Save DET171/0e0d282a28929e29723ec68b6211672b to your computer and use it in GitHub Desktop.
My short collection of C++ macros
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
#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