So I was recently looking at competitive programming, and many people have the following code in their program to make it faster to type:
#define ll long long
For every instance of ll
, long long
will be replaced. However, I also saw another similar thing:
using ll = long long
Is there any difference between using one or the other, and when should I use which?