write a program for 7*8 = 56 ? without using * multiply
operator ? output = 56
Answer Posted / banavathvishnu
int main()
{
printf("%d",7<<3);
getch();
}
| Is This Answer Correct ? | 30 Yes | 7 No |
Post New Answer View All Answers
Explain how can I prevent another program from modifying part of a file that I am modifying?
What was noalias and what ever happened to it?
What is return type in c?
Is printf a keyword?
Should a function contain a return statement if it does not return a value?
What is the benefit of using #define to declare a constant?
Why is %d used in c?
How do you determine whether to use a stream function or a low-level function?
What is file in c language?
What is the auto keyword good for?
Which is the best website to learn c programming?
What is the difference between null pointer and wild pointer?
Why shouldn’t I start variable names with underscores?
What is call by reference in functions?
Explain how can you avoid including a header more than once?