9 Jan 2015

Program: Divition of two number



#include<stdio.h>
#include<conio.h>
Void main()
{
int  a,b,divi;
clrscr();
printf("Enter the value of  a and b:\n");
scanf("%d%d",&a,&b);
divi=a\b;
printf("\ndivi=%d",divi);
getch();
}

No comments:

Post a Comment