fork download
  1. extern int x, a[];
  2.  
  3. int main()
  4. {
  5. x=*a;
  6. return 0;
  7. }
  8.  
  9. int a[] = { 0, 2}; /* completes the type */
  10. int x = 10;
Success #stdin #stdout 0.01s 1716KB
stdin
Standard input is empty
stdout
Standard output is empty