fork download
  1. #include <stdio.h>
  2. typedef struct
  3. {
  4. int num ;
  5. } NUMBER ;
  6.  
  7. int main(void)
  8. {
  9. NUMBER array[99999];
  10. return 0;
  11. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c: In function ‘main’:
prog.c:9:16: error: unused variable ‘array’ [-Werror=unused-variable]
         NUMBER array[99999];
                ^
cc1: all warnings being treated as errors
stdout
Standard output is empty