meta data for this page
  •  

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
c [2020/01/09 11:35] niziakprogramming:c:start [2020/09/28 11:15] niziak
Line 1: Line 1:
 +====== C ======
  
 ====== printf format check ====== ====== printf format check ======
Line 37: Line 38:
         MAX_VALUE_SIGNED(a) : MAX_VALUE_UNSIGNED(a))         MAX_VALUE_SIGNED(a) : MAX_VALUE_UNSIGNED(a))
 </code>         </code>        
 +
 +====== sizeof ======
 +
 +<code c>
 +#define member_size(type, member) sizeof(((type *)0)->member)
 +</code>