Here you can learn about C its basic programs and all other concept about it. No need to refer any book, just simply study here with us. You can post your queries and feedback at CONTACT US tab. We will help you out for sure.

C language (For beginners)

 

5. Division of two numbers-
#include<stdio.h>
#include<conio.h>
void main()
{
   clrscr();
   int a, b, c;
 
   printf("Enter two numbers to Divide \n");
   scanf("%d%d",&a,&b);
 
   c = a / b;
 
   printf("Division of entered numbers = %d\n",c);
 
   getch();


}

1 2 < back