Code:
#define PRINT(STR,VAR) \ 
        cout << STR " = "  VAR << endl
int i = 10;
PRINT("i;", i);
HI, how come this macro doen't work?