fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. unsigned long long a[1000000000000000000000];
  5. return 0;
  6. }
  7.  
Compilation error #stdin compilation error #stdout 0s 9296KB
stdin
Standard input is empty
compilation info
prog.c: In function ‘main’:
prog.c:4:23: warning: integer constant is too large for its type
  unsigned long long a[1000000000000000000000];
                       ^~~~~~~~~~~~~~~~~~~~~~
prog.c:4:21: error: size of array ‘a’ is too large
  unsigned long long a[1000000000000000000000];
                     ^
prog.c:4:21: warning: unused variable ‘a’ [-Wunused-variable]
stdout
Standard output is empty