C Program to Divide Two Numbers

 #include<stdio.h>

void main()

{float a,b;

    printf("Enter two numbers: ");

    scanf("%f %f",&a,&b);

   

  printf("Division = %f",a/b);

}

Comments

Popular posts from this blog

Single Program Using All Automatic String Functions

C program for subtraction of two matrices (2D Arrays)

C program for Multiplication of Two matrices