fork(1) download
  1. #include <stdio.h>
  2.  
  3. #define adecl(x) a##x
  4.  
  5. int main(void)
  6. {
  7. int adecl(3)=777;
  8. double adecl(17)=17.17;
  9. printf("%d %lf",a3,a17);
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
777 17.170000