Discription About Program

1.C program to read two numbers and print the division of numbers
2.C program to read two numbers and print division of numbers.

For Example-:

	#include<stdio.h>
	void main()
	 {
	    int a,b,div;
	    printf("entered the value");
	   scanf("%d%d",&a,&b);
	    div=a/b;
	    printf("%d",div);
	  }