Cipherd@lemmy.ml to Programmer Humor@programming.dev · 10 hours agofunctionslemmy.mlimagemessage-square36linkfedilinkarrow-up1329arrow-down14file-text
arrow-up1325arrow-down1imagefunctionslemmy.mlCipherd@lemmy.ml to Programmer Humor@programming.dev · 10 hours agomessage-square36linkfedilinkfile-text
minus-squareZiglin (it/they)@lemmy.worldlinkfedilinkEnglisharrow-up2·5 hours agoOr perhaps call function if you’ve got a call stack going. Nevermind that is C or something right? Otherwise it would be jmp function?
minus-squarex00z@lemmy.worldlinkfedilinkEnglisharrow-up2·2 hours agoYeah that’s C. I added the goto to put emphasis on the function being a label instead of a real function. https://www.geeksforgeeks.org/c/goto-statement-in-c/
function: ... goto function;Or perhaps
call functionif you’ve got a call stack going.Nevermind that is C or something right? Otherwise it would be
jmp function?Yeah that’s C.
I added the
gototo put emphasis on the function being a label instead of a real function.https://www.geeksforgeeks.org/c/goto-statement-in-c/