printf-tac-toe icon indicating copy to clipboard operation
printf-tac-toe copied to clipboard

About README

Open Rratic opened this issue 4 years ago • 0 comments

You wrote

Computing the NOT of a single value is also easy:

printf("%1$255d%1$s%hhn", a, b)

will compute

*b = (strlen(a)+255)%256 = strlen(a)-1

and again, because strlen(x) is either 1 or 0 we have

*c = !b

Well,in *c=!b ,where does c come from? Do you mean *b=!a ?

Rratic avatar Jan 29 '21 01:01 Rratic