fork download
  1. #include <stdio.h>
  2.  
  3. int a = 10;
  4. int *p = &a;
  5. int *(&q) = p;
  6.  
  7. int main(void) {
  8. // your code goes here
  9. return 0;
  10. }
  11.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c:5:7: error: expected identifier or ‘(’ before ‘&’ token
 int *(&q) = p;
       ^
stdout
Standard output is empty