fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int *abc1 = 1;
  5. char abc2[] = { 1 };
  6. char abc3 = 'a';
  7. return 0;
  8. }
  9.  
Success #stdin #stdout 0s 2004KB
stdin
Standard input is empty
stdout
Standard output is empty