vinay


{ City } hyderabad
< Country > india
* Profession * student
User No # 66202
Total Questions Posted # 0
Total Answers Posted # 1

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 4
Users Marked my Answers as Wrong # 2
Questions / { vinay }
Questions Answers Category Views Company eMail




Answers / { vinay }

Question { Infosys, 19146 }

write a c programs to do multiplication of two numbers with
out using arithmatic operator ??????????


Answer

#include
#include
void main()
{int i, j ,num1,num2;
printf("enter the value of num1 & num2");
scanf("%d%d",&num1,&num2);
for(i=1; i<=num1; i++)
for(j=1;j<=num2;j++)
{static int k=1;
k++;
)printf("%d\n",k);}

Is This Answer Correct ?    4 Yes 2 No