main.c 100 B

12345678
  1. #include <assert.h>
  2. #include <stdlib.h>
  3. int main(void) {
  4. assert(0);
  5. return EXIT_SUCCESS;
  6. }