Following is a code segment i am using:
int q;
int cacheline = 64;
int min;
q = cacheline/min;
when run, this always gets an exception for q. i want the quotient part i.e for 64/20 i want 3 and don't care about the remainder. i am at loss about the error since int should truncate.
minever initialized? – Joey Adams Dec 23 '10 at 19:51minhave a non-zero value? – Jon Dec 23 '10 at 19:5364/0? – R. Martinho Fernandes Dec 23 '10 at 19:53