Help me in my C program..

Newbie Member
14Jul2010,16:19   #1
saphir3's Avatar
I'm new to C. This program does division widout using division operator.
But dis program works weird. It works for inputs like 9 3,8 3, etc.., but doesnt work for 8 2, and other higher inputs. Can ny1 plz help me wid dis??

# include <stdio.h>
# include <conio.h>
void main()
{
clrscr();
int a,b,i;
printf("2 numbers : ");
scanf("%d %d",&a,&b);
if (b==0)
printf("invalid input");
if(a>=b)
{
for(i=1;i<=a;i++)
{
a=a-b;
if(a<b)
{
printf("remainder is %d and Quotient is %d",a,i);
break;
}
}
}
else
printf("remainder is %d and Quotient is 0",a);
getch();
}
Ambitious contributor
14Jul2010,20:37   #2
jimblumberg's Avatar
Check out this section of your code:
Code:
 for(i=1;i<=a;i++)
Both i and a are moving targets you probably need
Code:
 for(i = 1; a < 0; i++)
Jim
Newbie Member
15Jul2010,00:53   #3
saphir3's Avatar
ya thanks.. got it..