My AI thinks it's funny
Asked my AI assistant to “clean up my messy function.”
It deleted the whole thing and said “function no longer needed.”
Honestly, might be right.
Asked my AI assistant to “clean up my messy function.”
It deleted the whole thing and said “function no longer needed.”
Honestly, might be right.
This media is not supported in your browser
VIEW IN TELEGRAM
Push zip file directly to the production 👍
This media is not supported in your browser
VIEW IN TELEGRAM
\r enjoyer
#include <stdio.h>
#include <unistd.h>
int main() {
for (int i = 10; i >= 1; i--) {
printf("\r%2d", i);
fflush(stdout);
sleep(1);
}
printf("\r");
printf("Done!\n");
return 0;
}