fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a[1] = {0};
  5. int *b = a;
  6. int* c = a;
  7. int*d = a;
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 4396KB
stdin
Standard input is empty
stdout
Standard output is empty