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
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
Who is the main contributor in designing the c language after dennis ritchie?
What is the use of pragma in embedded c?
What are loops in c?
Write a C program to count the number of email on text
Who is the founder of c language?
What is bash c?
What is ctrl c called?
Explain Basic concepts of C language?
program to convert a integer to string in c language'
What does c mean in standard form?
Why void is used in c?
Difference between MAC vs. IP Addressing
Is a house a mass structure?
What is difference between structure and union?