A simple tip to put a PRINT
command and save some time with cout << blablabla << endl;
and this stuff.
#define PRINT(val) \
cout << val << endl
#define PRINTTXT(txt, val) \
cout << txt << endl << val << endl
A simple tip to put a PRINT
command and save some time with cout << blablabla << endl;
and this stuff.
#define PRINT(val) \
cout << val << endl
#define PRINTTXT(txt, val) \
cout << txt << endl << val << endl