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
🧾 Program Statement Write a C program to accept a character from the user and displ…
0 కామెంట్లు