@JPDev@programming.dev to Programmer Humor@programming.dev • 10 months agoWhitespaceprogramming.devimagemessage-square72fedilinkarrow-up1305arrow-down110
arrow-up1295arrow-down1imageWhitespaceprogramming.dev@JPDev@programming.dev to Programmer Humor@programming.dev • 10 months agomessage-square72fedilink
minus-square@YaBoyMax@programming.devlinkfedilinkEnglish3•10 months agoI think you’ve got it backwards. I learned to read pointer decls from right-to-left, so const int * is a (mutable) pointer to an int which is const while int *const is a const pointer to a (mutable) int.
minus-squareTraister101linkfedilink2•10 months agoFuck me man that’s what I get for writing that just before bed
I think you’ve got it backwards. I learned to read pointer decls from right-to-left, so
const int *
is a (mutable) pointer to an int which is const whileint *const
is a const pointer to a (mutable) int.Fuck me man that’s what I get for writing that just before bed