Logo

Programming-Idioms

History of Idiom 109 > diff from v12 to v13

Edit summary for version 13 by fantasy:
New C implementation by user [fantasy]

Version 12

2018-04-08, 19:04:13

Version 13

2018-05-08, 01:13:24

Idiom #109 Number of bytes of a type

Set n to the number of bytes of a variable t (of type T).

Idiom #109 Number of bytes of a type

Set n to the number of bytes of a variable t (of type T).

Code
n = sizeof (t);