Write a fast routine for multiplying an unsigned integer by 7. Then write a fast routine for dividing an unsigned integer by 7.
Write a fast routine for multiplying an unsigned integer by 7. Then write a fast routine for dividing an unsigned integer by 7.
2 Comments so far
Leave a comment
To Multiply
int MultBySeven(int iA)
{
int result = 0;
for(int i = 0; i
By Sundar on 07.13.07 4:23 am | Permalink
int MultBySeven(int iA)
{
int result = 0;
for(int i = 0; i
By Sundar on 07.13.07 4:23 am | Permalink
Leave a comment
If you are including code in your comment, place it within a <div class='code'></div> tag for better formatting.