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


Please Help Members By Posting Answers For Below Questions

Can we declare variables anywhere in c?

763


what is event driven software and what is procedural driven software?

2272


What is #include stdio h and #include conio h?

763


Explain c preprocessor?

871


Why static is used in c?

832


How can I open a file so that other programs can update it at the same time?

906


What is variable in c example?

812


How important is structure in life?

790


write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?

2636


What is c language and why we use it?

806


What is the difference between variable declaration and variable definition in c?

807


Explain argument and its types.

788


What is the difference between typedef and #define?

728


What is scope rule of function in c?

781


the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none

839