Name: Anonymous 2021-01-04 11:47
Y'all goid bro, hitz me with code, nigga.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/time.h>
int main(void)
{
printf("You, sir, are naught but a");
struct timeval t;
gettimeofday(&t, NULL);
srand(t.tv_sec ^ (t.tv_usec << 3));
static const char *s[] = { "nigga", "ass", "bitch" };
int e = 20, p = -1;
for(int i = 0, l = rand() % 42; i < l; i++) {
int c;
do {
c = rand() % (sizeof(s) / sizeof(s[0]));
} while(c == p);
p = c;
printf(" %s", s[c]);
e += strlen(s[c]) + 1;
if(e >= 75) {
e = 0;
printf("\n");
}
}
printf(", motherfucker!\n");
return EXIT_SUCCESS;
}