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
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
What is n in c?
What are the functions to open and close the file in c language?
Describe the difference between = and == symbols in c programming?
Why isnt any of this standardized in c?
Explain how can a program be made to print the name of a source file where an error occurs?
When should a type cast be used?
When is the “void” keyword used in a function?
Explain how can you check to see whether a symbol is defined?
What are the properties of union in c?
Why is c fast?
Is that possible to add pointers to each other?
What are qualifiers?
i want to switch my career from quailty assurance engineering to development kindly guide me from which programming language its better for me to start plz refer some courses or certifications too i have an experience of 1.5 yrs in QA field.Kindly guide me
How can I handle floating-point exceptions gracefully?