Monday, May 6, 2013

Division Of Two Number

/*Division Of Two Number*/
/* Suchetan Dey */

#include<stdio.h>
#include<conio.h>
     void main()
     {
          int a,b,c;
          clrscr();
          printf("Enter The Number Of A \n");
          scanf("%d",&a);
          printf("Enter The Number Of B \n");
          scanf("%d",&b);
          c=a/b;
          printf("The Division Of Two Number Is %d",c);
          getch();
     }

The Output is :-

No comments:

Post a Comment