fork download
  1. #include <stdio.h>
  2.  
  3. struct rect {int w; int h;} r , *rp = r;
  4.  
  5. int main(void) {
  6.  
  7. return 0;
  8. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c:3:39: error: incompatible types when initializing type ‘struct rect *’ using type ‘struct rect’
stdout
Standard output is empty