language: C++ 4.7.2 (gcc-4.7.2)
date: 802 days 15 hours ago
link:
visibility: public
1
2
3
4
5
6
7
8
9
10
#include <iostream>
 
using namespace std;
 
#define LOG_PARAMETERS( x ) cout << x
 
int main() {
        LOG_PARAMETERS ( 1 << "Sarfaraz" << 2 << 'A' );
        return 0;
}