alloca.c 216 B

1234567891011121314
  1. #include <alloca.h>
  2. #include <stdio.h>
  3. #include <string.h>
  4. #include "test_helpers.h"
  5. int main(void) {
  6. char *str = (char *) alloca(17);
  7. memset(str, 'A', 16);
  8. str[16] = '\0';
  9. printf("%s\n", str);
  10. }