Give a fast way to multiply a number by 7
Answer Posted / anu
Both answers have slight mistakes in them.
x *7 = ( x<<3 ) - x , which is equivalent to (x* 8 ) -x
| Is This Answer Correct ? | 65 Yes | 6 No |
Post New Answer View All Answers
how to find anagram without using string functions using only loops in c programming
What is the right type to use for boolean values in c?
What is string in c language?
What is string function in c?
How can you allocate arrays or structures bigger than 64K?
What is a program flowchart and explain how does it help in writing a program?
What is the Purpose of 'extern' keyword in a function declaration?
Is linux written in c?
What does 1f stand for?
What are the two forms of #include directive?
What is LINKED LIST? How can you access the last element in a linked list?
Is Exception handling possible in c language?
Tell me is null always defined as 0(zero)?
What do you mean by command line argument?
What are dangling pointers? How are dangling pointers different from memory leaks?