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 what does the characters 'r' and 'w' mean when writing programs that will make use of files?
What is the purpose of main( ) in c language?
write a program for the normal snake games find in most of the mobiles.
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
Differentiate between Macro and ordinary definition.
What is pragma in c?
What is the difference between array and pointer?
What are the 4 types of organizational structures?
How can I get random integers in a certain range?
Explain the use of keyword 'register' with respect to variables.
What are the uses of null pointers?
What is the use of a static variable in c?
What is the difference between c &c++?
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
How can you determine the maximum value that a numeric variable can hold?