write a program for 7*8 = 56 ? without using * multiply
operator ? output = 56
Answer Posted / rama krishna sidhartha
Here is the logic.
void func()
{
int i;
int result = 0;
for(i = 0; i < 8; i++)
{
result = result + 7;
}
printf("%d",result);
}
| Is This Answer Correct ? | 8 Yes | 3 No |
Post New Answer View All Answers
Why c is called top down?
Differentiate between a structure and a union.
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
Wt are the Buses in C Language
Dont ansi function prototypes render lint obsolete?
Which are low level languages?
What is action and transformation in spark?
What is a void pointer? When is a void pointer used?
Which one would you prefer - a macro or a function?
how many errors in c explain deply
How do you do dynamic memory allocation in C applications?
What is enumerated data type in c?
What is variable and explain rules to declare variable in c?
i want to know the procedure of qualcomm for getting a job through offcampus
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon