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;
}