fork(1) download
  1. #include <stddef.h>
  2.  
  3. static const int BUFSIZE = 1024;
  4. char sg_buffer [BUFSIZE];
  5.  
  6. int main () {
  7.  
  8. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c:4:6: error: variably modified ‘sg_buffer’ at file scope
 char sg_buffer [BUFSIZE];
      ^
prog.c: In function ‘main’:
prog.c:8:1: warning: control reaches end of non-void function [-Wreturn-type]
 }
 ^
stdout
Standard output is empty