#include<bits/stdc++.h>
#define LL long long
#define ULL unsigned long long
#define LD long double
#define MOD 1e9+7
OR
typedef long long LL;
typedef unsigned long long ULL;
typedef long double LD;
Usage:
LL a = 123;
ULL b = 456;
LD = 4.6775;
#define MAX(a,b) ((a)>(b)?(a):(b))
#define MIN(a,b) ((a)<(b)?(a):(b))
#define ABS(x) ((x)<0?-(x):(x))
#define si(n) scanf("%d",&n)
#define sf(n) scanf("%f",&n)
#define sl(n) scanf("%lld",&n)
#define slu(n) scanf("%llu",&n)
#define sd(n) scanf("%lf",&n)
#define ss(n) scanf("%s",n)
#define REP(i,n) for(int i=0;i<(n);i++)
#define FOR(i,a,b) for(int i=(a);i<(b);i++)
#define FORR(i,n) for(int i=(n);i>=0;i--)
g++ -std=c++11 -O2 -Wall test.cpp -o test
This command produces a binary file test from the source code test.cpp
. The
compiler follows the C++11 standard (-std=c++11
), optimizes the code (-O2
),
and shows warnings about possible errors (-Wall
)