Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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


Please Help Members By Posting Answers For Below Questions

How was c created?

1093


Implement bit Array in C.

1199


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.

2144


Is c procedural or functional?

1095


How many main () function we can have in a project?

1154


Explain what is the difference between far and near ?

1164


What is break statement?

1178


What is huge pointer in c?

1135


What does the c preprocessor do?

1158


What is pointer in c?

1247


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

1169


5 Write an Algorithm to find the maximum and minimum items in a set of ā€˜n’ element.

2158


What is the use of parallelize in spark?

1064


What is static volatile in c?

1075


Differentiate between ordinary variable and pointer in c.

1252