C program to perform division without using division (/) operator

preview_player
Показать описание
Due to some issues of code syntax with the properties of YouTube, the code has been pasted in the comments.

Like, Share and SUBSCRIBE
@snehaiitian

Music Credits:
Music: Joy
Musician: ASHUTOSH
Рекомендации по теме
Комментарии
Автор

Source Code:-
/* Perform integer division without using / operator*/

#include<stdio.h>
int main(){
int divisor, dividend;
printf("enter divisor ");
scanf("%d", &divisor);
printf("\nenter dividend ");
scanf("%d", &dividend);
int count=0;
for(int
count++;
}
printf("\n");
printf("%d/%d=%d", dividend, divisor, count);
return 0;
}

snehaiitian