Top 10 similar words or synonyms for punning

wordplay    0.754449

puns    0.737100

alliteration    0.688386

spoonerism    0.681495

jocular    0.666372

malapropism    0.664097

facetious    0.656262

syllepsis    0.641327

alliterative    0.639663

neologistic    0.634307

Top 30 analogous words or synonyms for punning

Article Example
Type punning In computer science, type punning is a common term for any programming technique that subverts or circumvents the type system of a programming language in order to achieve an effect that would be difficult or impossible to achieve within the bounds of the formal language.
Type punning This is legal C99 and above because the stored value of an object may be accessed through an lvalue of aggregate or union type that includes one of the aforementioned types among its members (including, recursively, a member of a subaggregate or contained union). Here the relevant declared type is codice_12 for the store and codice_22 for the read in the union, thus complying with the s6.5 rules.
Type punning One classic example of "type punning" is found in the Berkeley sockets interface. The function to bind an opened but uninitialized socket to an IP address is declared as follows:
Type punning Not all examples of "type punning" involve structures, as the previous example did. Suppose we want to determine whether a floating-point number is negative. We could write:
Type punning Note that the behaviour will not be exactly the same: in the special case of codice_13 being negative zero, the first implementation yields codice_14 while the second yields codice_15.