C program for division of two numbers || Functions in C || No Arguments but Returns a value || C Programming
In this, we are going to see the Functions that have no arguments but returns a value, this program we are going to see division of two numbers using C Programming Language.


#include <stdio.h>
float div()
{
    float a, b;
    printf("Enter 2 numbers: \n");
    scanf("%f\n%f", &a, &b);
    return a/b;
}

float main()
{
    printf("Division is: %f",div());
    return 0;
}

//........Coded by YASH ALLAPURIA

#ENJOY CODING

Post a Comment

FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP

Previous Post Next Post