fork download
  1. #include <stdio.h>
  2.  
  3. #define makro(S, t) scanf(S, &t);
  4.  
  5. int main(void) {
  6. // your code goes here
  7.  
  8. int a = 0;
  9. printf("%d\n", a);
  10.  
  11. makro("%d", a);
  12.  
  13. printf("%d\n", a);
  14.  
  15. return 0;
  16. }
Success #stdin #stdout 0s 2296KB
stdin
4
stdout
0
4