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
Can we declare variables anywhere in c?
what is event driven software and what is procedural driven software?
What is #include stdio h and #include conio h?
Explain c preprocessor?
Why static is used in c?
How can I open a file so that other programs can update it at the same time?
What is variable in c example?
How important is structure in life?
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
What is c language and why we use it?
What is the difference between variable declaration and variable definition in c?
Explain argument and its types.
What is the difference between typedef and #define?
What is scope rule of function in c?
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none