fork download
  1. #include <stdio.h>
  2. void run(int *i)
  3. {
  4. printf("%d",*i);
  5. }
  6.  
  7. int main(void) {
  8. register int i = 04711;
  9. run(&i);
  10. return 0;
  11. }
  12.  
Compilation error #stdin compilation error #stdout 0s 2168KB
stdin
Standard input is empty
compilation info
prog.c: In function 'main':
prog.c:9:2: error: address of register variable 'i' requested
  run(&i);
  ^
stdout
Standard output is empty