removes random files

This commit is contained in:
SuperNovaa41 2024-01-12 12:50:26 -05:00
parent 3dc1ab7722
commit 8994bc0365
3 changed files with 0 additions and 14 deletions

BIN
a.out

Binary file not shown.

BIN
isbn

Binary file not shown.

14
test.c
View File

@ -1,14 +0,0 @@
#include <string.h>
#include <stdio.h>
int main(void)
{
char* x = "Hello, ";
char* y = "world!";
size_t out_len = strlen(x) + strlen(y) + 1;
char out[out_len];
snprintf(out, out_len, "%s%s", x, y);
puts(out);
return 0;
}