/** Rule: INT35-C
* Source: wiki
* Status: PASS - Should NOT trigger INT35-C violation
*/#include<stddef.h>#include<stdint.h>/* Returns the number of set bits */size_tpopcount(uintmax_tnum){size_t precision =0;while(num !=0){if(num %2==1){
precision++;}
num >>=1;}return precision;}#definePRECISION(umax_value)popcount(umax_value)