Tech Programs
Sunday, 3 May 2015
Division in c program
Division in c Program
#include<stdio.h>
int main()
{
int a,b,c;
printf("Enter The Two Number : ");
scanf("%d%d",&a,&b);
c=a/b;
printf("The Division Value is:%d",c);
}
output
Enter the two number:4
2
The Division Value is:2
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment