fork(1) download
  1. int main()
  2. {
  3. char tb[]="Ala ma kota";
  4. char *ptr=tb;
  5. char &*rf=ptr;
  6. return 0;
  7. }
  8.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp: In function ‘int main()’:
prog.cpp:5:11: error: cannot declare pointer to ‘char&’
    char &*rf=ptr;
           ^
prog.cpp:5:11: warning: unused variable ‘rf’ [-Wunused-variable]
stdout
Standard output is empty