fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. #define EXEMPLE(type, arg) \
  5.   struct TEST { \
  6.   type arg; \
  7.   }
  8.  
  9. EXEMPLE(int, asd);
  10.  
  11. int main() {
  12. // your code goes here
  13. return 0;
  14. }
Success #stdin #stdout 0.01s 5532KB
stdin
Standard input is empty
stdout
Standard output is empty