C program to Find Area of Rectangle using user define function | Program Clips

Published: 06 May 2021
on channel: Program Clips
1,827
19

#Cprogram
#coding
............................................................................................................
Source Code :
#include stdio.h
void area();
void main()
{
printf("Program to Find Area of rectangle\n\n");
area();
}
void area()
{
float length,breadth,area;
printf("Enter length: ");
scanf("%f",&length);
printf("Enter breadth: ");
scanf("%f",&breadth);
area=length*breadth;
printf("Area of a rectangle=%.2f",area);
}


On this page of the site you can watch the video online C program to Find Area of Rectangle using user define function | Program Clips with a duration of hours minute second in good quality, which was uploaded by the user Program Clips 06 May 2021, share the link with friends and acquaintances, this video has already been watched 1,827 times on youtube and it was liked by 19 viewers. Enjoy your viewing!