write a program for 7*8 = 56 ? without using * multiply
operator ? output = 56
Answer Posted / manish soni bca 3rd year jaipu
#include<stdio.h>
#include<conio.h>
void main()
{
int i,ans;
ans=0;
for(i=0;i<8;i++)
ans=ans+7;
printf("%d",ans);
getch();
}
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
How was c created?
Implement bit Array in C.
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
Is c procedural or functional?
How many main () function we can have in a project?
Explain what is the difference between far and near ?
What is break statement?
What is huge pointer in c?
What does the c preprocessor do?
What is pointer in c?
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above
5 Write an Algorithm to find the maximum and minimum items in a set of ānā element.
What is the use of parallelize in spark?
What is static volatile in c?
Differentiate between ordinary variable and pointer in c.