Sujet : if(!(i%16)) De : fir (at) *nospam* grunge.pl (fir) Groupes :comp.lang.c Date : 30. Mar 2024, 22:44:11 Autres entêtes Organisation : i2pn2 (i2pn.org) Message-ID :<uua137$3in1a$1@i2pn2.org> User-Agent : Mozilla/5.0 (Windows NT 5.1; rv:27.0) Gecko/20100101 Firefox/27.0 SeaMonkey/2.24
void bytes_dump_in_hex() { for(int i=0; i<bytes_size; i++) { if(!(i%16)) printf("\n"); printf("%02x ", bytes[i]); } } in the code above seem that those inner () in if(!(i%16)) are needed why is that so?