Prof. Sweetlove@beehaw.org to Programmer Humor@lemmy.ml · 1 year agoFor-loops in Java don't require any code in the body. I can't control what you do with that information.beehaw.orgimagemessage-square3fedilinkarrow-up128arrow-down10file-text
arrow-up128arrow-down1imageFor-loops in Java don't require any code in the body. I can't control what you do with that information.beehaw.orgProf. Sweetlove@beehaw.org to Programmer Humor@lemmy.ml · 1 year agomessage-square3fedilinkfile-text
Reposting this abomination from my Reddit Account because this is important information. Uncle Bob would be proud.
minus-squareLeo Uino@lemmy.sdf.orglinkfedilinkarrow-up2·1 year agoThere’s always the classic C strcpy :) char *strcpy(char *dest, char *src) { char *p = dest; while (*p++ = *src++); return dest; }
There’s always the classic C strcpy :)
char *strcpy(char *dest, char *src) { char *p = dest; while (*p++ = *src++); return dest; }
Oof.