fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. #define testfunction(X,Y) \
  5. cout << #X << endl;\
  6. cout << #Y;
  7.  
  8. int main() {
  9. testfunction( 20, (int* a, int* b))
  10. return 0;
  11. }
Success #stdin #stdout 0s 5452KB
stdin
Standard input is empty
stdout
20
(int* a, int* b)