Division of two numbers
#include <stdio.h>
int main() {
int i=6,j=2,div;
div=i/j;
printf("division of two numbers is = %d\n",div);
return 0;
}
output:-
division of two numbers is = 3
What is an example of iteration in C? An example of iteration in C is using a loop con…
0 కామెంట్లు