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
What is register variable in c language?
Explain what is the difference between a string and an array?
What 'lex' does?
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
Write a program to print ASCII code for a given digit.
Which node is more powerful and can handle local information processing or graphics processing?
What are the differences between Structures and Arrays?
Explain union. What are its advantages?
Explain what is the difference between #include and #include 'file' ?
Can a variable be both static and volatile in c?
Explain what does the format %10.2 mean when included in a printf statement?
Why is c not oop?
What is p in text message?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?