c program for Division
#include <stdio.h> #include <coino.h> void main() { int a,b,c; printf("insert two no. for Division :\t"); scanf("%d%d",&a,&b); c=a/b; printf("Division of %d from %d is %d"a,b,c); getch(); }
#include <stdio.h> #include <coino.h> void main() { int a,b,c; printf("insert two no. for Division :\t"); scanf("%d%d",&a,&b); c=a/b; printf("Division of %d from %d is %d"a,b,c); getch(); }
Comments
Post a Comment